-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.54 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
[project]
name = "AudioBookRequest"
version = "1.10.4"
requires-python = ">= 3.14"
readme = "README.md"
dependencies = [
"aiohttp>=3.13.5",
"alembic>=1.18.4",
"apscheduler>=3.11.2",
"argon2-cffi>=25.1.0",
"argon2-cffi-bindings>=25.1.0",
"cryptography>=46.0.7",
"fastapi[standard]>=0.135.3",
"itsdangerous>=2.2.0",
"jinja2>=3.1.6",
"jinja2-fragments>=1.12.0",
"jinja2-htmlmin>=1.0.1",
"jinjax>=0.63",
"markdown>=3.10.2",
"psycopg2-binary>=2.9.11",
"pydantic>=2.12.5",
"pydantic-core>=2.41.5",
"pydantic-settings>=2.13.1",
"pyjwt>=2.12.1",
"python-multipart>=0.0.24",
"rapidfuzz>=3.14.5",
"requests>=2.33.1",
"sqlmodel>=0.0.38",
"structlog>=25.5.0",
"terminaltables>=3.1.10",
"torf>=4.3.1",
"torrent-parser>=0.4.1",
"typer>=0.24.1",
"urllib3>=2.6.3",
]
# setuptools by default expects a "src" folder structure
[tool.setuptools.packages.find]
where = ["."]
[tool.uv]
package = false
[tool.djlint]
profile = "django"
ignore = "H021"
format_js=true
line_break_after_multiline_tag=true
max_blank_lines=1
# NOTE: custom_html formats documents, but also adds quotes around attributes breaking jinjax
# custom_html="BaseLayout,Index.PopularSection,BookCard"
ignore_case=true
[tool.basedpyright]
typeCheckingMode = "all"
include = ["app"]
reportDeprecated = false
reportUnusedCallResult = false
allowedUntypedLibraries = ["apscheduler", "torrent_parser", "jinjax"]
[dependency-groups]
dev = [
"basedpyright>=1.39.0",
"djlint>=1.36.4",
"ruff>=0.15.9",
]