Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ version = "0.1.0"
description = "Contender backend — FastAPI service: AI agent panel, persistence, auth, the provenance gate."
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.139.2",
"fastapi>=0.141.1",
"pydantic>=2.9",
"pydantic-settings>=2.14.2",
"uvicorn[standard]>=0.51.0",
"anthropic>=0.118.0", # messages.parse/parsed_output (structured outputs) — verified vs 0.109.2
"openai>=2.47.0", # adjudication + list-models; non-beta responses.parse (verified vs 2.43.0)
"anthropic>=0.120.2", # messages.parse/parsed_output (structured outputs) — verified vs 0.109.2
"openai>=2.50.0", # adjudication + list-models; non-beta responses.parse (verified vs 2.43.0)
"sqlalchemy[asyncio]>=2.0.51", # persistence (admin-managed provider config)
"asyncpg>=0.30", # async Postgres driver for SQLAlchemy
"cryptography>=43", # Fernet — encrypt provider API keys at rest (was transitive via authlib)
Expand All @@ -22,11 +22,11 @@ dependencies = [

[project.optional-dependencies]
dev = [
"ruff>=0.15.22",
"ruff>=0.16.0",
"mypy>=2.3.0",
"pytest>=9.1.1",
"aiosqlite>=0.20", # offline test DB (sqlite+aiosqlite) so the suite needs no Postgres
"httpx2>=2.7.0", # Starlette 1.3 TestClient; runtime Authlib/Resend calls still use httpx
"httpx2>=2.9.1", # Starlette 1.3 TestClient; runtime Authlib/Resend calls still use httpx
]

# Virtual project: uv never builds/installs it as a package (the Dockerfile syncs with
Expand Down
Loading