-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 1.44 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
[project]
name = "ai-job-application-agent"
version = "0.1.0"
description = "Next.js and FastAPI job application copilot for grounded resume and cover letter generation."
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"fastapi==0.115.12",
"uvicorn==0.34.0",
"openai==1.98.0",
"requests==2.32.4",
"supabase>=2.7,<3",
"pypdf==5.9.0",
"python-docx==1.1.2",
"markdown-it-py==3.0.0",
"weasyprint==64.1",
"reportlab==3.6.12",
"python-dotenv==1.0.1",
"slowapi==0.1.9",
# Required by FastAPI for multipart/form-data on /workspace/transcribe
# and /workspace/feedback. Without it, those routes throw at import
# time the moment a TestClient tries to POST form data.
"python-multipart==0.0.20",
# Observability — Sentry for error tracking + tracing + AI agents
# monitoring + Logs API + Crons. PostHog for product analytics
# (events, session replay via the JS SDK on the frontend) + LLM
# Analytics ($ai_generation events). Both are no-ops when their
# respective DSN / API-key env vars are unset, so adding them to
# the runtime image is safe in environments that haven't wired
# the integration on yet (local dev, CI, the test suite).
"sentry-sdk[fastapi]>=2.35,<3",
"posthog>=3.7,<4",
]
[dependency-groups]
dev = [
"pytest==8.3.5",
"pytest-timeout==2.3.1",
]
[tool.pytest.ini_options]
pythonpath = ["."]
timeout = 30
[tool.uv]
package = false