-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
78 lines (74 loc) · 2.03 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
#!/usr/bin/env python3
# coding: utf-8
"""Installation script for PASTIS."""
from setuptools import setup
with open("README.md") as f:
lines = f.readlines()
README = "\n".join(lines[4:7]+lines[50:])
setup(
name="pastis-framework",
version="1.0.13",
description="PASTIS framework for collaborative fuzzing",
long_description=README,
long_description_content_type='text/markdown',
python_requires='>=3.9',
packages=[
"libpastis",
"libpastis.proto",
"pastisbroker",
"pastisbenchmark",
"pastisaflpp",
"pastishonggfuzz",
"pastistritondse",
],
package_dir={
"pastisaflpp": "engines/pastisaflpp",
"pastishonggfuzz": "engines/pastishonggfuzz",
"pastistritondse": "engines/pastistritondse",
},
url="https://github.com/quarkslab/pastis",
project_urls={
"Documentation": "https://quarkslab.github.io/pastis/",
"Bug Tracker": "https://github.com/quarkslab/pastis/issues",
"Source": "https://github.com/quarkslab/pastis"
},
setup_requires=[],
install_requires=[
"protobuf",
"pyzmq",
"psutil",
"aenum",
"lief>=v0.15.0",
"python-magic",
"click",
"coloredlogs",
"quokka-project",
"watchdog",
"pydantic",
"matplotlib",
"joblib",
"rich",
"tritondse>=v0.1.12",
],
tests_require=[],
license="AGPL-3.0",
author="Quarkslab",
classifiers=[
'Topic :: Security',
'Environment :: Console',
'Operating System :: OS Independent',
],
test_suite="",
entry_points={
"console_scripts": [
"pastis-benchmark = pastisbenchmark.__main__:main",
"pastis-broker = pastisbroker.__main__:main",
"pastis-aflpp = pastisaflpp.__main__:main",
"pastis-honggfuzz = pastishonggfuzz.__main__:main",
"pastis-tritondse = pastistritondse.__main__:main"
]
},
scripts=[
'bin/pastisd',
]
)