-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (94 loc) · 2.76 KB
/
pyproject.toml
File metadata and controls
101 lines (94 loc) · 2.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "griffe-runtime-objects"
description = "Make runtime objects available through `extra`."
authors = [{name = "Timothée Mazzucotelli", email = "dev@pawamoy.fr"}]
license = "ISC"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
keywords = []
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"griffelib>=2.0",
]
[project.urls]
Homepage = "https://mkdocstrings.github.io/griffe-runtime-objects"
Documentation = "https://mkdocstrings.github.io/griffe-runtime-objects"
Changelog = "https://mkdocstrings.github.io/griffe-runtime-objects/changelog"
Repository = "https://github.com/mkdocstrings/griffe-runtime-objects"
Issues = "https://github.com/mkdocstrings/griffe-runtime-objects/issues"
Discussions = "https://github.com/mkdocstrings/griffe-runtime-objects/discussions"
Gitter = "https://gitter.im/mkdocstrings/griffe-runtime-objects"
Funding = "https://github.com/sponsors/pawamoy"
[tool.pdm.version]
source = "call"
getter = "scripts.get_version:get_version"
[tool.pdm.build]
# Include as much as possible in the source distribution, to help redistributors.
excludes = ["**/.pytest_cache"]
source-includes = [
"config",
"docs",
"scripts",
"share",
"tests",
"duties.py",
"zensical.toml",
"*.md",
"LICENSE",
]
[tool.pdm.build.wheel-data]
# Manual pages can be included in the wheel.
# Depending on the installation tool, they will be accessible to users.
# pipx supports it, uv does not yet, see https://github.com/astral-sh/uv/issues/4731.
data = [
{path = "share/**/*", relative-to = "."},
]
[dependency-groups]
maintain = [
"git-changelog>=2.5",
"twine>=5.1",
"yore>=0.3.3",
]
ci = [
"duty>=1.6",
"griffe>=2.0",
"pytest>=8.2",
"pytest-cov>=5.0",
"pytest-randomly>=3.15",
"pytest-xdist>=3.6",
"ruff>=0.4",
"ty>=0.0.14",
"types-markdown>=3.6",
"types-pyyaml>=6.0",
]
docs = [
"ghp-import>=2.1",
"markdown-callouts>=0.4",
"markdown-exec>=1.8",
"mkdocstrings[python]>=0.29",
# YORE: EOL 3.10: Remove line.
"tomli>=2.0; python_version < '3.11'",
"zensical>=0.0.21",
]
[tool.uv]
default-groups = ["maintain", "ci", "docs"]