-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (43 loc) · 1.1 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
[project]
name = "attr-docs"
version = "1.0.0"
description = "Runtime access to Python class attribute, enum member, and dataclass field docstrings"
readme = "README.md"
license = "MIT"
keywords = [
"docstrings",
"PEP 224",
"pep224",
"class attributes",
"attribute docstrings",
"error reporting",
"enum",
"enum members",
"member docstrings",
"dataclasses",
"dataclass fields",
"field docstrings",
"ast",
"sphinx",
"autodoc",
]
authors = [{ name = "gesslerpd", email = "gesslerpd@users.noreply.github.com" }]
requires-python = ">=3.10"
dependencies = []
[project.urls]
Homepage = "https://github.com/gesslerpd/attr-docs"
Repository = "https://github.com/gesslerpd/attr-docs"
Issues = "https://github.com/gesslerpd/attr-docs/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