-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 922 Bytes
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
[project]
name = "demo-app"
version = "0.1.0"
description = ""
authors = [
{name = "Your Name", email = "you@example.com"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"fastapi>=0.115.11,<0.116.0",
"uvicorn[standard]>=0.34.0,<0.35.0",
"sqlalchemy>=2.0.39,<3.0.0",
"aiomysql>=0.2.0,<0.3.0",
"python-multipart>=0.0.20",
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
]
[project.optional-dependencies]
dev = [
"pytest-asyncio>=0.25.3",
"aiosqlite>=0.21.0",
"httpx>=0.28.1"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["api"]
[tool.uv]
dev-dependencies = [
"pytest-asyncio>=0.25.3",
"aiosqlite>=0.21.0",
"httpx>=0.28.1"
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::UserWarning",
]