-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
72 lines (67 loc) · 1.5 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fuzz-utils"
version = "0.2.0"
authors = [{ name = "Trail of Bits" }]
description = "A tool for automatically generating unit tests from Echidna and Medusa reproducers."
readme = "README.md"
license = { "text" = "AGPL-3.0" }
urls = { "Homepage" = "https://github.com/crytic/fuzz-utils" }
requires-python = ">=3.10"
dependencies = [
"colorama>=0.4.0",
"slither_analyzer>=0.10.0",
"jinja2>=3.1.0",
"eth_abi>=5.0.1",
"eth_utils>=4.0.0",
"eth_typing>=4.0.0"
]
[project.optional-dependencies]
lint = [
"pylint==2.13.4",
"black==22.3.0"
]
test = [
"pytest",
"solc-select>=0.1.4"
]
dev = [
"fuzz_utils[lint,test]"
]
[project.scripts]
fuzz-utils = "fuzz_utils.main:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
target-version = ["py310"]
line-length = 100
[tool.pylint.messages_control]
disable = """
unnecessary-lambda,
cyclic-import,
line-too-long,
invalid-name,
fixme,
too-many-return-statements,
too-many-ancestors,
logging-fstring-interpolation,
logging-not-lazy,
duplicate-code,
import-error,
unsubscriptable-object,
too-many-arguments,
unpacking-non-sequence
"""
[tool.mypy]
warn_incomplete_stub = true
ignore_missing_imports = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_no_return = true
warn_unreachable = true