forked from xiaocong/uiautomator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import uiautomator
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requires = []
setup(name='uiautomator',
version=uiautomator.__version__,
description='Python Wrapper for Android UiAutomator test tool',
long_description=uiautomator.__doc__,
author=uiautomator.__author__,
author_email='[email protected]',
url='https://github.com/xiaocong/uiautomator',
install_requires=requires,
py_modules=['uiautomator'],
scripts=['uiautomator.py'],
setup_requires=['nose>=1.0', 'mock>=1.0.1', 'coverage>=3.6'],
license='MIT',
platforms='any',
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
)
)