forked from doudoudedi/hackEmbedded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.19 KB
/
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
with open("./README.rst",'r') as f:
data= f.read()
setup(name='hackebds',
version='0.3.6',
description='This tool is used for backdoor,shellcode generation,Information retrieval and POC generation for various architecture devices',
long_description=data,
url='https://github.com/doudoudedi/hackEmbedded',
author='doudoudedi',
author_email='[email protected]',
license='GPL-3.0',
install_requires=[
'pwn',
'requests',
'colorama',
'mako',
'pygments',
'multidict',
'fuzzywuzzy',
'pwntools==4.9.0'
],
python_requires='>=3',
py_modules=['hackebds.arm','hackebds.mips',"hackebds.aarch64","hackebds.extract_shellcode",'hackebds.model_choise','hackebds.cve_info','hackebds.powerpc_info','hackebds.ESH','hackebds.sparc32','hackebds.sparc64','hackebds.my_package','hackebds.backdoor_encode','hackebds.hackebds_cmd','hackebds.power_reverse_shell','hackebds.power_bind_shell','hackebds.exp_database','hackebds.mips32n','hackebds.hackebds_script'],
data_files=["README.md"],
entry_points={
'console_scripts': [
'hackebds = hackebds:main',
]
},
)