-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 870 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 870 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
[project]
name = "family-book"
version = "0.1.0"
description = "Private, self-hosted family tree and archive"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115,<1",
"uvicorn[standard]>=0.34,<1",
"sqlalchemy>=2.0,<3",
"alembic>=1.14,<2",
"pydantic-settings>=2.7,<3",
"httpx>=0.28,<1",
"cryptography>=44,<45",
"python-multipart>=0.0.18,<1",
"jinja2>=3.1,<4",
"aiofiles>=24,<25",
"aiosqlite>=0.20,<1",
"greenlet>=3.1,<4",
"pillow>=12.1.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8,<9",
"pytest-asyncio>=0.24,<1",
"ruff>=0.9,<1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 100