forked from trailofbits/manticore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 739 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 739 Bytes
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
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.0',
packages=find_packages(),
install_requires=[
'capstone',
'pyelftools',
'unicorn',
'ply',
],
extras_require={
'dev': [
'keystone-engine',
'coverage',
'nose',
'Sphinx',
]
},
entry_points={
'console_scripts': [
'manticore = manticore.__main__:main'
]
}
)