forked from Swind/pure-python-adb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (30 loc) · 1019 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
]
setup(
name='pure-python-adb',
version="0.3.0-dev",
description='Pure python implementation of the adb client',
long_description=readme + '\n\n' + history,
author='Swind Ou',
author_email='[email protected]',
url="https://github.com/Swind/pure-python-adb",
license='MIT license',
packages=find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
install_requires=[],
extras_require={"async": ["aiofiles>=0.4.0"]},
keywords="adb",
classifiers=classifiers,
)