-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathinstaller.py
27 lines (26 loc) · 1.13 KB
/
installer.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
from setuptools import setup, find_packages
setup(name='androhack',
version='8.0.0',
description=(
' androhack tool is a sophisticated post-exploitation tool specifically designed for Android devices. It utilizes the Android Debug Bridge (ADB) protocol, which is a versatile command-line tool that allows communication with a device. By exploiting ADB, Ghost Framework provides an avenue for remotely accessing and controlling an Android device, even if the device is not rooted.'
),
url='https://github.com/DarkKnightGeeky/AndroHack.git',
author='CyberLord',
author_email='darkknightgeeky@gmail.com',
license='MIT',
python_requires='>=3.7.0',
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"androhack = androhack: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
)