-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.3 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
[tool.poetry]
name = "fuzzable"
version = "2.0.6"
description = "Framework for Automating Fuzzable Target Discovery with Static Analysis"
authors = [
"ex0dus <[email protected]>"
]
license = "MIT"
readme = "README.md"
homepage = "https://codemuch.tech/fuzzable"
repository = "https://github.com/ex0dus-0x/fuzzable"
documentation = "https://github.com/ex0dus-0x/fuzzable/wiki"
keywords = ["security", "fuzzing", "vulnerability-research", "binary-analysis"]
[tool.poetry.dependencies]
python = "^3.8"
typer = {extras = ["all"], version = "^0.6.1"}
angr = "^9.2.8"
lief = "^0.12.1"
tree-sitter = "^0.20.0"
scikit-criteria = "^0.7"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = { version = "^22.6.0", python = "^3.9" }
mypy = "^0.961"
pylint = "^2.14.5"
githubrelease = "^1.5.9"
GitPython = "^3.1.27"
[tool.poetry.scripts]
fuzzable = "fuzzable.__main__:app"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target_version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.github
| _build
| buck-out
| build
| docs
| dist
)/
| Dockerfile
)
'''