language-learning-app/api/pyproject.toml

45 lines
1 KiB
TOML
Raw Normal View History

2026-03-18 20:55:02 +00:00
[project]
name = "language-learning-api"
version = "0.1.0"
requires-python = "==3.13.*"
2026-03-18 20:55:02 +00:00
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",
2026-03-18 20:55:02 +00:00
"pydantic-settings>=2.0.0",
"google-genai>=2.6.0",
"boto3>=1.35.0",
2026-03-21 20:47:15 +00:00
"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",
2026-03-18 20:55:02 +00:00
]
[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",
]