-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.53 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "devils-advocate"
version = "0.9.33"
description = "Cost-aware multi-LLM adversarial review engine with deterministic governance"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.12"
authors = [{name = "Brian Kelley"}]
keywords = ["llm", "code-review", "governance", "adversarial", "consensus"]
dependencies = [
"click>=8.1",
"httpx>=0.27",
"pyyaml>=6.0",
"rich[markdown]>=13.0",
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"jinja2>=3.1",
"python-multipart>=0.0.9",
"ruamel.yaml>=0.18",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"respx>=0.21",
"httpx>=0.27",
]
e2e = [
"pytest-playwright>=0.5",
"playwright>=1.48",
"Pillow>=10.0",
"pixelmatch>=0.3",
]
[project.scripts]
dvad = "devils_advocate.cli:cli"
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"live: e2e tests that make real API calls (select with '-m live')",
"e2e: end-to-end Playwright GUI tests (select with '-m e2e')",
"e2e_live: E2E tests requiring local LLM (select with '-m e2e')",
"paranoid: adversarial E2E tests for unguarded destructive paths",
]
[tool.hatch.build.targets.wheel]
packages = ["src/devils_advocate"]
include = [
"src/devils_advocate/templates/*.txt",
"src/devils_advocate/gui/static/*",
"src/devils_advocate/gui/templates/*",
"src/devils_advocate/examples/*",
"src/devils_advocate/examples/.env.example",
]