language-learning-app/api/pyproject.toml
wilson fecb5839ea
Some checks failed
/ test (push) Has been cancelled
feats: use Procrastinate for persistant jobs; try using Gemini for text
generation
2026-05-27 18:45:52 +01:00

44 lines
1 KiB
TOML

[project]
name = "language-learning-api"
version = "0.1.0"
requires-python = "==3.13.*"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy[asyncio]>=2.0.0",
"asyncpg>=0.30.0",
"spacy>=3.8.0",
"anthropic>=0.40.0",
"pyjwt>=2.10.0",
"passlib>=1.7.4",
"email-validator>=2.0.0",
"alembic>=1.13.0",
"pydantic-settings>=2.0.0",
"google-genai>=2.6.0",
"boto3>=1.35.0",
"httpx>=0.28.1",
"deepgram-sdk>=6.1.0",
"opentelemetry-instrumentation-logging>=0.63b1",
"opentelemetry-instrumentation-fastapi>=0.63b1",
"opentelemetry-api>=1.42.1",
"opentelemetry-sdk>=1.42.1",
"opentelemetry-exporter-prometheus>=0.63b1",
"prometheus-client>=0.25.0",
"prometheus-fastapi-instrumentator>=7.1.0",
"procrastinate>=3.8.1",
"watchfiles>=1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[dependency-groups]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]