forked from aai-institute/jobq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 827 Bytes
/
pyproject.toml
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
[project]
name = "jobq"
version = "0.0.0"
requires-python = ">=3.10"
[tool.uv]
dev-dependencies = [
"mkdocs",
"mkdocs-callouts",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-include-dir-to-nav",
"black", # formatting of signatures in docs
"mike",
"docstring-parser",
]
[tool.ruff]
preview = true
exclude = ["openapi_client"]
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"W",
"B",
"UP",
"C4",
"PYI",
"FAST",
"PTH",
"T10", # prevent stray debug breakpoints
]
ignore = [
"E501", # Line too long
"RUF029", # Unused Async (FastAPI routes are async)
"FAST003", # FastAPI unused path parameter (they can be consumed by dependencies)
]