Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (30 loc) · 1019 Bytes

File metadata and controls

36 lines (30 loc) · 1019 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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='swind@cloudmosa.com',
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,
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.