-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.21 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "relay-detector"
version = "0.1.0"
description = "Veridrop · AI API relay station quality and authenticity detector"
license = "AGPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [{ name = "Veridrop" }]
readme = "README.md"
requires-python = ">=3.10"
urls = { Homepage = "https://veridrop.org", Repository = "https://github.com/canarybyte/veridrop" }
dependencies = [
"httpx>=0.27",
"pydantic>=2.6",
"typer>=0.12",
"rich>=13.7",
"rapidfuzz>=3.6",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"respx>=0.21",
"reportlab>=4.0", # only for scripts/build_test_pdf.py — runtime doesn't need it
]
web = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"jinja2>=3.1",
"pillow>=10.2",
"python-multipart>=0.0.9",
]
[project.scripts]
relay-detector = "relay_detector.cli:app"
veridrop = "relay_detector.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"relay_detector.protocols.anthropic" = ["data/*.json", "data/*.pdf"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]