mirror of
https://github.com/xemu-project/xemu-test.git
synced 2026-01-31 01:25:21 +01:00
23 lines
521 B
Python
23 lines
521 B
Python
#!/usr/bin/env python3
|
|
from setuptools import setup
|
|
|
|
|
|
__version__ = '0.0.1'
|
|
|
|
|
|
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',
|
|
'pywinauto; sys_platform == "win32"'
|
|
],
|
|
python_requires='>=3.6'
|
|
)
|