-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 962 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
from setuptools import setup
import sys
if sys.version_info.major < 3:
sys.exit('Python <3 is unsupported.')
#def readfile(filename):
# with open(filename, 'r+') as f:
# return f.read()
setup(
name="hexapterygon",
version="1.1.0",
description="A user-friendly all-in-one cross-platform, (uni-curses compatible component, module and uitility) software for orchestrating and debloating your Android devices from unwanted pre-installed crap.",
#long_description=readfile('README.md'),
author="George Chousos",
author_email="gxousos@gmail.com",
url="https://github.com/GiorgosXou/hexapterygon",
packages=['hexapterygon'],
install_requires=['uni-curses', 'pure-python-adb', 'PyGithub'],
entry_points={
'console_scripts': [
'hexapterygon = hexapterygon.__main__:main'
]
},
)
# pip3 install .
# python setup.py sdist
# twine upload dist/*