forked from dtmilano/AndroidViewClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 902 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup
setup(name='AndroidViewClient',
version='4.5.1',
description='''AndroidViewClient is a 100% pure python tool that
simplifies test script creation providing higher level operations and the ability of
obtaining the tree of Views present at any given moment on the device or emulator screen.
''',
license='Apache',
keywords='android uiautomator viewclient monkeyrunner',
author='Diego Torres Milano',
url='https://github.com/dtmilano/AndroidViewClient/',
package_dir={'com.dtmilano.android':'src'},
packages=['com.dtmilano.android', 'tests.com.dtmilano.android'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License']
)