2022-03-04 07:22:27 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
2022-05-18 00:29:34 +00:00
|
|
|
__version__ = '0.0.6'
|
2022-03-04 07:22:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
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,
|
2022-03-17 06:42:47 +00:00
|
|
|
package_data={'xemutest': ['data/**/*']},
|
2022-03-04 07:22:27 +00:00
|
|
|
install_requires=[
|
2022-03-15 19:11:32 +00:00
|
|
|
'pyfatx >= 0.0.6',
|
2022-03-04 07:22:27 +00:00
|
|
|
'pywinauto; sys_platform == "win32"'
|
|
|
|
],
|
|
|
|
python_requires='>=3.6'
|
|
|
|
)
|