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
[project]
name = "pygitweb-workspace"
version = "0.0.0"
description = "Workspace root for postgit, pygittools, and pygitweb"
requires-python = ">=3.11"
dependencies = []
[dependency-groups]
dev = [
"ruff",
"pytest",
"mypy>=1.20.1",
]
[tool.uv.workspace]
members = ["postgit", "pygittools", "pygitweb", "pygitweb_pytesthtml"]
[tool.uv]
package = false
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "double"
indent-style = "tab"
docstring-code-format = true
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.mypy]
exclude = [
".*_test\\.py"
]