forked from xiaocong/uiautomator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·59 lines (55 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requires = [
"urllib3>=1.7.1"
]
test_requires = [
'nose>=1.0',
'mock>=1.0.1',
'coverage>=3.6'
]
version = '0.3.2'
setup(
name='uiautomator',
version=version,
description='Python Wrapper for Android UiAutomator test tool',
long_description='Python wrapper for Android uiautomator tool.',
author='Xiaocong He',
author_email='xiaocong@gmail.com,hongbin.bao@gmail.com',
url='https://github.com/xiaocong/uiautomator',
download_url='https://github.com/xiaocong/uiautomator/tarball/%s' % version,
keywords=[
'testing', 'android', 'uiautomator'
],
install_requires=requires,
tests_require=test_requires,
test_suite="nose.collector",
packages=['uiautomator'],
package_data={
'uiautomator': [
'uiautomator/libs/bundle.jar',
'uiautomator/libs/uiautomator-stub.jar',
'uiautomator/libs/app-uiautomator-test.apk',
'uiautomator/libs/app-uiautomator.apk'
]
},
include_package_data=True,
license='MIT',
platforms='any',
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing'
)
)