forked from trailofbits/manticore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 861 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
31
32
33
34
35
from setuptools import setup, find_packages
setup(
name='manticore',
description='Manticore is a prototyping tool for dynamic binary analysis, with support for symbolic execution, taint analysis, and binary instrumentation.',
url='https://github.com/trailofbits/manticore',
author='Trail of Bits',
version='0.1.5',
packages=find_packages(),
install_requires=[
'capstone>=3.0.5rc2',
'pyelftools',
'unicorn',
'ply',
'pysha3',
'z3-solver',
],
extras_require={
'dev': [
'keystone-engine',
'coverage',
'nose',
'Sphinx',
'redis',
],
'redis': [
'redis',
]
},
entry_points={
'console_scripts': [
'manticore = manticore.__main__:main'
]
}
)