-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 869 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
[project]
name = "python-wiki"
version = "0.1.0"
description = "The Python community wiki"
requires-python = ">=3.14"
license = "MIT"
dependencies = []
[dependency-groups]
docs = [
"sphinx>=8.0",
"shibuya",
"myst-parser>=4.0",
"sphinx-copybutton>=0.5.0",
"sphinx-design>=0.6.0",
"sphinx-autobuild>=2024.0.0",
"linkify-it-py>=2.0",
"litestar>=2.15",
"httpx>=0.28",
]
convert = [
"beautifulsoup4>=4.12",
]
[tool.uv]
default-groups = ["docs"]
[tool.uv.workspace]
exclude = ["oauth"]
[tool.ruff]
target-version = "py314"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "S", "B", "A", "C4", "DTZ", "T20", "ICN", "PIE", "PT", "RSE", "RET", "SIM", "TID", "TCH", "ARG", "ERA", "PGH", "PL", "TRY", "FLY", "PERF", "RUF"]
ignore = ["S603", "S607", "T201"]
[tool.ruff.lint.isort]
known-first-party = ["scripts"]