-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (76 loc) · 1.77 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (76 loc) · 1.77 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "autofuzz"
version = "2.0.0.dev0"
description = "Modular framework for authorized protocol fuzzing and web application security assessment"
readme = "readme.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Samuel James" },
{ name = "Annup Kumar" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
dependencies = [
"typer>=0.12",
"rich>=13.7",
"pydantic>=2.6",
"pydantic-settings>=2.2",
"httpx>=0.27",
"structlog>=24.1",
"jinja2>=3.1",
"pyyaml>=6.0",
"beautifulsoup4>=4.12",
"defusedxml>=0.7",
]
[project.optional-dependencies]
dev = [
"ruff>=0.4",
"mypy>=1.9",
"pytest>=8.1",
"pytest-asyncio>=0.23",
"coverage>=7.4",
"types-pyyaml>=6.0",
"types-beautifulsoup4>=4.12",
"types-defusedxml>=0.7",
"build>=1.2",
"pip-audit>=2.7",
]
[project.urls]
Homepage = "https://github.com/samuel7james/Autofuzz"
[project.scripts]
autofuzz = "autofuzz.cli.app:cli_main"
[tool.hatch.build.targets.wheel]
packages = ["src/autofuzz"]
[tool.ruff]
line-length = 100
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "C4"]
[tool.mypy]
python_version = "3.10"
strict = true
mypy_path = "src"
explicit_package_bases = true
packages = [
"autofuzz.core",
"autofuzz.cli",
"autofuzz.web",
"autofuzz.plugins",
"autofuzz.protocol_fuzzing",
"autofuzz.reporting",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["src/autofuzz"]