language-learning-app/api/pyproject.toml

29 lines
615 B
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.11"
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>=1.0.0",
"boto3>=1.35.0",
2026-03-21 20:47:15 +00:00
"httpx>=0.28.1",
2026-03-27 07:54:00 +00:00
"deepgram-sdk>=6.1.0"
2026-03-18 20:55:02 +00:00
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]