forked from shellphish/driller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 819 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
30
from distutils.core import setup
import subprocess
#TRACER_URL = 'git+ssh://[email protected]:/cgc/tracer.git#egg=tracer'
#FUZZER_URL = 'git+ssh://[email protected]:/cgc/fuzzer.git#egg=fuzzer'
#
#if subprocess.call(['pip', 'install', TRACER_URL]) != 0:
# raise LibError("Unable to install tracer")
#
#if subprocess.call(['pip', 'install', FUZZER_URL]) != 0:
# raise LibError("Unable to install fuzzer")
setup(
name='driller',
version='1.0',
packages=['driller'],
data_files=[
('bin/driller', ('bin/driller/listen.py',),),
],
install_requires=[
'cle',
'angr',
'redis',
'celery',
'simuvex',
'archinfo',
'dpkt-fix',
'termcolor',
],
)