jobhunt-platform/apps/api/pyproject.toml
hermes 3035e4eac9 W2: api v1 features (CV import, AF fetch, batch scoring, today/nudges, interview prep, SMTP+clipboard transports, scheduler, 90 tests)
Implements docs/api-contract-v2.md. Migration 002 adds follow-up fields.
EchoTransport replaced by SMTP->Clipboard selection behind unchanged approval gate.
Scheduler (APScheduler) daily 07:00 fetch+score, env-gated, default off.
Test image installs workspace packages; build context moved to repo root.
Recovered and committed by integration lead after W2 worker hit iteration limit.
2026-07-30 18:29:17 +00:00

32 lines
No EOL
632 B
TOML

[project]
name = "jobhunt-api"
version = "0.1.0"
description = "Jobhunt platform backend API"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.30",
"psycopg[binary,pool]>=3.2",
"pydantic>=2.9",
"python-multipart>=0.0.9",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3",
"httpx>=0.27",
"pypdf>=4.0",
"python-docx>=1.1",
"apscheduler>=3.10",
]
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["app", "app.db"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "..", "../.."]