mirror of
https://github.com/xemu-project/xemu-test.git
synced 2024-11-23 01:49:40 +00:00
23 lines
533 B
Python
23 lines
533 B
Python
#!/usr/bin/env python3
|
|
from setuptools import setup
|
|
|
|
|
|
__version__ = '0.0.6'
|
|
|
|
|
|
setup(name='xemutest',
|
|
version=__version__,
|
|
description='xemu Automated Tests',
|
|
author='Matt Borgerson',
|
|
author_email='contact@mborgerson.com',
|
|
url='https://github.com/mborgerson/xemu-test',
|
|
packages=['xemutest'],
|
|
include_package_data=True,
|
|
package_data={'xemutest': ['data/**/*']},
|
|
install_requires=[
|
|
'pyfatx >= 0.0.6',
|
|
'pywinauto; sys_platform == "win32"'
|
|
],
|
|
python_requires='>=3.6'
|
|
)
|