-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (43 loc) · 1.4 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
"""
adbts
~~~~~
Android Debug Bridge (ADB) Transports
:copyright: (c) 2017 Andrew Hawker.
:license: Apache 2.0, see LICENSE for more details.
"""
import ast
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version_regex = re.compile(r'__version__\s+=\s+(.*)')
def get_version():
with open('adbts/__init__.py', 'r') as f:
return str(ast.literal_eval(version_regex.search(f.read()).group(1)))
setup(
name='adbts',
version=get_version(),
author='Andrew Hawker',
author_email='[email protected]',
url='https://github.com/adbpy/transports',
license='Apache 2.0',
description='Android Debug Bridge (ADB) Transports',
long_description=__doc__,
packages=['adbts'],
python_requires='>=3.5',
install_requires=['libusb1>=1.8'],
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
)
)