19 lines
394 B
TOML
19 lines
394 B
TOML
[project]
|
|
name = "fitness-web"
|
|
version = "0.1.0"
|
|
description = "Multi-user fitness tracking web app with AI coaching"
|
|
requires-python = ">=3.12"
|
|
|
|
dependencies = [
|
|
"fastapi>=0.115,<1",
|
|
"uvicorn[standard]>=0.34,<1",
|
|
"jinja2>=3.1,<4",
|
|
"sqlalchemy[asyncio]>=2.0,<3",
|
|
"aiosqlite>=0.20,<1",
|
|
"python-multipart>=0.0.18,<1",
|
|
"httpx>=0.28,<1",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = []
|