forked from jtpereyda/boofuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
116 lines (106 loc) · 2.86 KB
/
pyproject.toml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[tool.poetry]
name = "boofuzz"
version = "0.4.2"
description = "A fork and successor of the Sulley Fuzzing Framework"
authors = ["Joshua Pereyda <[email protected]>"]
license = "GPL-2.0-only"
readme = ["README.rst", "CHANGELOG.rst"]
repository = "https://github.com/jtpereyda/boofuzz"
documentation = "https://boofuzz.readthedocs.io/"
keywords = ["security", "fuzzing"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: System :: Networking",
"Topic :: Software Development :: Testing :: Traffic Generation",
]
include = [
{ path = "*.py", format = "sdist" },
{ path = "*.rst", format = "sdist" },
{ path = "*.toml", format = "sdist" },
{ path = "*.txt", format = "sdist" },
{ path = "tox.ini", format = "sdist" },
{ path = "_static", format = "sdist" },
{ path = "artwork", format = "sdist" },
{ path = "docs", format = "sdist" },
{ path = "examples", format = "sdist" },
{ path = "request_definitions", format = "sdist" },
{ path = "unit_tests", format = "sdist" },
{ path = "utils", format = "sdist" },
]
[tool.poetry.dependencies]
attrs = "*"
click = "*"
colorama = "*"
Flask = "*"
funcy = "*"
psutil = "*"
pydot = "*"
pyserial = "*"
python = "^3.8"
tornado = "*"
# dev extras
black = { version = "*", optional = true }
flake8 = { version = "*", optional = true }
ipaddress = { version = "*", optional = true }
mock = { version = "*", optional = true }
netifaces = { version = "*", optional = true }
pytest = { version = "*", optional = true }
pytest-bdd = { version = "*", optional = true }
pytest-cov = { version = "*", optional = true }
tox = { version = "*", optional = true }
wheel = { version = "*", optional = true }
# docs extras
pygments = { version = ">=2.4.0", optional = true }
sphinx = { version = "*", optional = true }
sphinx_rtd_theme = { version = "*", optional = true }
[tool.poetry.extras]
dev = [
"black",
"flake8",
"ipaddress",
"mock",
"netifaces",
"pygments",
"pytest",
"pytest-bdd",
"pytest-cov",
"sphinx",
"sphinx_rtd_theme",
"tox",
"wheel",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"pygments",
]
[tool.poetry.scripts]
boo = 'boofuzz.cli:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
testpaths = ["unit_tests"]
filterwarnings = [
"ignore:SocketConnection is deprecated:FutureWarning",
]
[tool.pytype]
disable = [
"import-error",
]
exclude = [
"**/ida_fuzz_library_extender.py",
"examples/*.py",
"**/*_test_*.py",
"request_definitions/*.py",
"utils/*.py",
]