forked from trailofbits/manticore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
92 lines (79 loc) · 2.6 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import os
import sys
from setuptools import setup, find_packages
from datetime import date
on_rtd = os.environ.get("READTHEDOCS") == "True"
def rtd_dependent_deps():
# RTD tries to build z3, ooms, and fails to build.
if on_rtd:
return native_deps
else:
return ["z3-solver"]
# If you update native_deps please update the `REQUIREMENTS_TO_IMPORTS` dict in `utils/install_helper.py`
# (we need to know how to import a given native dependency so we can check if native dependencies are installed)
native_deps = [
"capstone==5.0.0rc2",
"pyelftools",
"unicorn~=2.0",
]
lint_deps = ["black~=22.0", "mypy==0.790"]
auto_test_deps = ["py-evm"]
# Development dependencies without keystone
dev_noks = (
native_deps
+ ["coverage", "Sphinx", "pytest>=5.3.0", "pytest-xdist>=1.30.0", "pytest-cov>=2.8.1", "jinja2"]
+ lint_deps
+ auto_test_deps
)
extra_require = {
"native": native_deps,
# noks - no keystone
"dev-noks": dev_noks,
"dev": native_deps + dev_noks + ["keystone-engine"],
"redis": ["redis"],
"lint": lint_deps,
}
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
# https://stackoverflow.com/a/4792601 grumble grumble
version = "0.3.7"
if "--dev_release" in sys.argv:
major, minor, point = tuple(int(t) for t in version.split("."))
dev_extension = f"dev{date.today().strftime('%y%m%d')}"
version = f"{major}.{minor}.{point + 1}.{dev_extension}"
sys.argv.remove("--dev_release")
setup(
name="manticore",
description="Manticore is a symbolic execution tool for analysis of binaries and smart contracts.",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/trailofbits/manticore",
author="Trail of Bits",
version=version,
packages=find_packages(exclude=["tests", "tests.*"]),
python_requires=">=3.7",
install_requires=[
"pyyaml",
"protobuf~=3.20",
# evm dependencies
"pysha3",
"prettytable",
"ply",
"rlp",
"intervaltree",
"crytic-compile>=0.2.2",
"wasm",
"dataclasses; python_version < '3.7'",
"pyevmasm>=0.2.3",
]
+ rtd_dependent_deps(),
extras_require=extra_require,
entry_points={
"console_scripts": [
"manticore = manticore.__main__:main",
"manticore-verifier = manticore.ethereum.verifier:main",
]
},
classifiers=["License :: OSI Approved :: GNU Affero General Public License v3"],
)