forked from AirtestProject/Airtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import sys
from setuptools import setup, find_packages
from pip.req import parse_requirements
install_reqs = parse_requirements('requirements.txt', session=False)
reqs = [str(ir.req) for ir in install_reqs]
if sys.platform != "win32":
reqs.remove('pywinauto')
setup(
name='airtest',
version='1.0.3',
author='Netease Games',
author_email='gzliuxin@corp.netease.com',
description='UI Test Automation Framework for Games and Apps',
long_description='UI Test Automation Framework for Games and Apps, present by NetEase Games',
url='https://github.com/AirtestProject/Airtest',
license='Apache License 2.0',
keywords=['game', 'automation', 'test', 'android', 'windows', 'opencv'],
packages=find_packages(exclude=['cover', 'examples', 'tests', 'dist']),
package_data={
'android_deps': ["*.apk", "airtest/core/android/static"],
'html_statics': ["airtest/report"]
},
include_package_data=True,
install_requires=reqs,
extras_require={
'tests': [
'nose',
],
'docs': [
'sphinx',
'recommonmark',
'sphinx_rtd_theme',
'mock',
]},
classifiers=[
'Programming Language :: Python :: 2.7',
],
)