-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (28 loc) · 895 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
#setup py
from setuptools import setup, find_packages
setup(name='worm',
version='8.0.0',
description=(
'Worm Framework is an Android post-exploitation framework that exploits the'
' Android Debug Bridge to remotely access an Android device.'
),
url='http://github.com/krishealty/worm',
author='krishealty',
author_email='[email protected]',
license='MIT',
python_requires='>=3.7.0',
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"worm = worm: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
)