forked from tgalal/inception
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 973 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
deps = ['dulwich==0.10.1a', 'argparse', 'android-dumpkey>=0.1.2', 'libusb1==1.4.1']
#libusb1==1.4.1 because 1.5.1 introduced some errors
from setuptools import setup, find_packages
import inception
setup(
name='inception-android',
version=inception.__version__,
url='http://github.com/tgalal/inception/',
license='GPL-3+',
author='Tarek Galal',
tests_require=[],
install_requires = deps,
scripts = ['incept'],
author_email='[email protected]',
description='Auto config tools for android devices',
#long_description=long_description,
packages= find_packages(),
include_package_data=True,
platforms='linux',
#test_suite='',
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux'
]
)