forked from hao1032/adbui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 962 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requires = [
'lxml',
'requests',
'Pillow'
]
setup(
name='adbui',
version='0.3.6',
description='Python Wrapper for Android UiAutomator test tool',
long_description='Python wrapper for Android uiautomator tool.',
author='Tango Nian',
author_email='[email protected]',
url='https://github.com/hao1032/adbui',
keywords=[
'testing', 'android', 'uiautomator', 'ocr'
],
install_requires=requires,
packages=['adbui'],
license='MIT',
platforms='any',
classifiers=(
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing'
)
)