-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (31 loc) · 928 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
from setuptools import setup, find_packages
setup(
name="adbons",
version="0.4.0",
author="Daniel Bälz",
author_email="me@dbaelz.de",
description="""A wrapper for the Android adb tool.
It's just adb on steroids""",
keywords="android debug bridge adb",
license="BSD",
url="https://github.com/dbaelz/adbons",
python_requires='>=3.5',
packages=find_packages(),
include_package_data=True,
install_requires=[
"click",
"pyyaml"
],
entry_points={
'console_scripts': ['adbons=src.adbons:cli']
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers"
],
)