-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 915 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (35 loc) · 915 Bytes
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
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["F601", "F821", "E722"]
[project]
name = "secuscan"
version = "0.1.0"
description = "Local-First Pentesting Toolkit"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.6",
"pydantic>=2.8.2",
"pydantic-settings>=2.6.0",
"psycopg[binary]>=3.3.0",
"redis>=5.2.1",
"sse-starlette>=2.1.0",
"python-multipart>=0.0.9",
"xhtml2pdf>=0.2.17",
"aiosqlite>=0.20.0",
"python-whois>=0.9.4"
]
[project.scripts]
secuscan = "backend.secuscan.cli:main"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["backend*"]
[tool.pytest.ini_options]
markers = [
"benchmark: performance benchmark tests (deselect with '-m not benchmark')",
]
asyncio_mode = "strict"
python_files = ["test_*.py", "bench_*.py"]