-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (65 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (65 loc) · 1.51 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "project-lethe"
version = "0.15.0"
description = "Project Lethe: AI-driven WAF resilience planning, active scope-gated testing, HTTP discrepancy templates, and deterministic payload mutation for authorized security testing."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Avinash K A" }
]
keywords = [
"waf",
"application-security",
"bug-bounty",
"payload-mutation",
"security-testing"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Utilities"
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6",
"mypy>=1.10",
]
completion = [
"argcomplete>=3.0",
]
mitm = [
"cryptography>=42.0",
]
[project.scripts]
lethe = "lethe.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
lethe = ["data/*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
packages = ["lethe"]
mypy_path = "src"
ignore_missing_imports = true
warn_unused_ignores = true