35 lines
719 B
TOML
35 lines
719 B
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>=1.0.0",
|
|
"boto3>=1.35.0",
|
|
"httpx>=0.28.1",
|
|
"deepgram-sdk>=6.1.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",
|
|
]
|