1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "app"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
    "fastapi>=0.115.12",
    "loguru>=0.7.3",
    "pydantic[email]>=2.11.5",
    "pydantic-settings>=2.9.1",
    "uvicorn>=0.34.3",
    "sqlalchemy>=2.0.0",
    "alembic>=1.12.0",
    "bcrypt>=4.3.0",
    "asyncpg>=0.30.0",
    "pyjwt[crypto]>=2.8.0",
    "python-multipart>=0.0.20",
    "aioboto3>=14.3.0",
    "python-slugify>=8.0.4",
]

[tool.uv]
default-groups = []

[dependency-groups]
dev = [
    "httpx>=0.28.1",
    "pytest>=8.4.0",
    "pytest-asyncio>=1.0.0",
    "ruff>=0.11.12",
]
reports = [
]