-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (46 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
57 lines (46 loc) · 1.15 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
[project]
name = "runtime-docstrings"
version = "0.1.3"
description = "Runtime access to Python class attribute docstrings (PEP 224)"
readme = "README.md"
license = "MIT"
keywords = [
"docstrings",
"PEP 224",
"pep224",
"class attributes",
"error reporting",
"enum",
"dataclasses",
"ast",
"sphinx",
"autodoc",
]
authors = [{ name = "gesslerpd", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://github.com/gesslerpd/runtime-docstrings"
Repository = "https://github.com/gesslerpd/runtime-docstrings"
Issues = "https://github.com/gesslerpd/runtime-docstrings/issues"
[build-system]
requires = ["uv-build>=0.8.2"]
build-backend = "uv_build"
[dependency-groups]
dev = ["pytest>=8.4.1", "pytest-cov>=6.2.1", "ruff>=0.12.4"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
[tool.coverage.run]
branch = true
[tool.coverage.report]
precision = 2
[tool.coverage.html]
show_contexts = true
[tool.ruff]
fix = true
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = ["COM812", "S101"]
[tool.ruff.lint.pydocstyle]
convention = "google"