-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
84 lines (71 loc) · 1.91 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
[project]
name = "curl-fuzzer-tools"
version = "0.1.0"
description = "Tooling for the curl-fuzzer repository"
requires-python = ">=3.9,<4"
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [{ name = "Max Dymond", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Testing",
"Typing :: Typed",
]
dependencies = ["scapy (>=2.6.1,<3.0.0)"]
[project.scripts]
read_corpus = "curl_fuzzer_tools.read_corpus:run"
generate_corpus = "curl_fuzzer_tools.generate_corpus:run"
corpus_to_pcap = "curl_fuzzer_tools.corpus_to_pcap:run"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"mypy==1.15.0",
"ruff==0.11.0",
]
[tool.mypy]
warn_unused_configs = true
disallow_untyped_defs = true
warn_return_any = true
[tool.ruff]
exclude = [
".venv",
"__pycache__",
".mypy_cache",
".git"
]
# Match black
line-length = 88
indent-width = 4
# Assume Python 3.9
target-version = "py39"
[tool.ruff.lint]
extend-select = [
"D" # pydocstyle
]
ignore = [
"D400",
"D401",
"D415"
]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"