-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (78 loc) · 1.73 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-backend"
version = "0.1.0"
description = "Production-ready FastAPI backend starter"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi==0.141.1",
"uvicorn[standard]==0.52.1",
"sqlalchemy[asyncio]==2.0.51",
"asyncpg==0.31.0",
"aiosqlite==0.22.1",
"alembic==1.19.0",
"pydantic-settings==2.14.2",
"pwdlib[argon2]==0.3.0",
"pyjwt==2.13.0",
"email-validator==2.3.0",
"python-multipart==0.0.32",
"structlog==25.5.0",
"aiomysql==0.3.2",
"aiosmtplib==5.1.2",
"annotated-doc==0.0.5",
"annotated-types==0.8.0",
"anyio==4.14.2",
"argon2-cffi==25.1.0",
"argon2-cffi-bindings==25.1.0",
"blinker==1.9.0",
"certifi==2026.7.22",
"cffi==2.1.1",
"click==8.4.2",
"cryptography==49.0.0",
"dnspython==2.8.0",
"fastapi-mail==1.6.5",
"greenlet==3.5.4",
"h11==0.16.0",
"httpcore==1.0.9",
"httptools==0.8.0",
"httpx==0.28.1",
"idna==3.18",
"jinja2==3.1.6",
"mako==1.4.1",
"markupsafe==3.0.3",
"pip==26.2.1",
"pycparser==3.0",
"pydantic==2.13.4",
"pydantic-core==2.46.4",
"pymysql==1.2.0",
"python-dotenv==1.2.2",
"pyyaml==6.0.3",
"regex==2026.7.19",
"starlette==1.4.1",
"typing-extensions==4.16.0",
"typing-inspection==0.4.2",
"uv==0.12.2",
"uvloop==0.22.1",
"watchfiles==1.2.0",
"websockets==17.0.1",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28,<1.0",
"pytest>=8.3,<9.0",
"pytest-asyncio>=0.25,<1.0",
"ruff>=0.9,<1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]