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",
|
2026-03-19 10:51:10 +00:00
|
|
|
"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",
|
2026-03-19 10:51:10 +00:00
|
|
|
"google-genai>=1.0.0",
|
|
|
|
|
"boto3>=1.35.0",
|
2026-03-21 20:47:15 +00:00
|
|
|
"httpx>=0.28.1",
|
2026-03-18 20:55:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["app"]
|