-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
28 lines (27 loc) · 890 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
from setuptools import setup, find_packages
setup(name='BITGOD',
version='6.0.0',
description=(
'BITGOD Framework is an Android post-exploitation framework that exploits the'
' Android Debug Bridge to remotely access an Android device.'
),
url='http://github.com/EntySec/Ghost',
author='EntySec',
author_email='[email protected]',
license='MIT',
python_requires='>=3.7.0',
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"BITGOD = HackGod:cli"
]
},
install_requires=[
'adb-shell',
'pex @ git+https://github.com/EntySec/Pex',
'badges @ git+https://github.com/EntySec/Badges',
'colorscript @ git+https://github.com/EntySec/ColorScript'
],
zip_safe=False
)