37 lines
684 B
TOML
37 lines
684 B
TOML
|
|
[project]
|
||
|
|
name = "wedding-api"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Backend for the wedding photos app"
|
||
|
|
requires-python = ">=3.12"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi[standard]==0.115.5",
|
||
|
|
"uvicorn[standard]==0.32.1",
|
||
|
|
"sqlalchemy[asyncio]==2.0.36",
|
||
|
|
"asyncpg==0.30.0",
|
||
|
|
"boto3==1.35.66",
|
||
|
|
"qrcode[pil]==8.0",
|
||
|
|
"reportlab==4.2.5",
|
||
|
|
"pydantic-settings==2.6.1",
|
||
|
|
"pyjwt==2.10.0",
|
||
|
|
"email-validator==2.2.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"ruff==0.7.4",
|
||
|
|
"mypy==1.13.0",
|
||
|
|
"pytest==8.3.3",
|
||
|
|
"httpx==0.27.2",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
line-length = 100
|
||
|
|
target-version = "py312"
|
||
|
|
|
||
|
|
[tool.ruff.lint]
|
||
|
|
select = ["E", "F", "I", "UP", "B", "ASYNC"]
|
||
|
|
ignore = ["E501"]
|
||
|
|
|
||
|
|
[tool.uv]
|
||
|
|
package = false
|