-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
29 lines (27 loc) · 828 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
#!/usr/bin/env python
from setuptools import setup
setup(name='Firmware_Slap',
version='1.0',
description='Tools to find bugs in firmware',
author='Christopher Roberts',
author_email='[email protected]',
url='https://github.com/ChrisTheCoolHut/Firmware_Slap',
packages=['firmware_slap'],
scripts=['bin/Vuln_Discover_Celery.py', 'bin/Vuln_Cluster_Celery.py',
'bin/Discover_And_Dump.py', 'bin/Load_And_View_Results.py'],
include_package_data=True,
install_requires=[
"tqdm",
"python-magic",
"IPython",
"sklearn",
"matplotlib",
"r2pipe",
"angr",
"psutil",
"termcolor",
"celery",
"flower",
"elasticsearch"
],
)