43 lines
1002 B
TOML
43 lines
1002 B
TOML
[project]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = ""
|
|
requires-python = ">=3.10,<4.0"
|
|
dependencies = [
|
|
"fastapi[standard]<1.0.0,>=0.114.2",
|
|
"email-validator<3.0.0.0,>=2.1.0.post1",
|
|
"passlib[bcrypt]<2.0.0,>=1.7.4",
|
|
"pydantic>2.0",
|
|
"jinja2<4.0.0,>=3.1.4",
|
|
"alembic<2.0.0,>=1.12.1",
|
|
"httpx<1.0.0,>=0.25.1",
|
|
"psycopg[binary]<4.0.0,>=3.1.13",
|
|
"sqlmodel<1.0.0,>=0.0.21",
|
|
# Pin bcrypt until passlib supports the latest
|
|
"bcrypt==4.0.1",
|
|
"pydantic-settings<3.0.0,>=2.2.1",
|
|
"pyjwt<3.0.0,>=2.8.0",
|
|
"aiohttp>=3.10.10",
|
|
"requests>=2.32.3",
|
|
"pytest-cov>=6.0.0",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest<8.0.0,>=7.4.3",
|
|
"mypy<2.0.0,>=1.8.0",
|
|
"ruff<1.0.0,>=0.2.2",
|
|
"isort>=5.13.2",
|
|
"pre-commit<4.0.0,>=3.6.2",
|
|
"types-passlib<2.0.0.0,>=1.7.7.20240106",
|
|
"coverage<8.0.0,>=7.4.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
exclude = ["venv", ".venv", "alembic"]
|