forked from mkdocstrings/python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (90 loc) · 2.43 KB
/
pyproject.toml
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
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "mkdocstrings-python"
description = "A Python handler for mkdocstrings."
authors = [{name = "Timothée Mazzucotelli", email = "pawamoy@pm.me"}]
license = {text = "ISC"}
readme = "README.md"
requires-python = ">=3.8"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Documentation",
"Topic :: Software Development",
"Topic :: Software Development :: Documentation",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"mkdocstrings>=0.20",
"griffe>=0.30",
]
[project.urls]
Homepage = "https://mkdocstrings.github.io/python"
Documentation = "https://mkdocstrings.github.io/python"
Changelog = "https://mkdocstrings.github.io/python/changelog"
Repository = "https://github.com/mkdocstrings/python"
Issues = "https://github.com/mkdocstrings/python/issues"
Discussions = "https://github.com/mkdocstrings/python/discussions"
Gitter = "https://gitter.im/mkdocstrings/python"
Funding = "https://github.com/sponsors/pawamoy"
[tool.pdm]
version = {source = "scm"}
plugins = [
"pdm-multirun",
]
[tool.pdm.build]
package-dir = "src"
includes = ["src/mkdocstrings_handlers"]
editable-backend = "editables"
[tool.pdm.dev-dependencies]
duty = ["duty>=0.10"]
ci-quality = ["mkdocstrings-python[duty,docs,quality,typing,security]"]
ci-tests = ["mkdocstrings-python[duty,docs,tests]"]
docs = [
"black>=23.1",
"markdown-callouts>=0.2",
"markdown-exec>=0.5",
"mkdocs>=1.3",
"mkdocs-coverage>=0.2",
"mkdocs-gen-files>=0.3",
"mkdocs-git-committers-plugin-2>=1.1",
"mkdocs-literate-nav>=0.4",
"mkdocs-material>=7.3",
"mkdocs-minify-plugin>=0.6.4",
"toml>=0.10",
]
maintain = [
"black>=23.1",
"blacken-docs>=1.13",
"git-changelog>=1.0",
]
quality = [
"ruff>=0.0.246",
]
tests = [
"pytest>=6.2",
"pytest-cov>=3.0",
"pytest-randomly>=3.10",
"pytest-xdist>=2.4",
]
typing = [
"mypy>=0.911",
"types-markdown>=3.3",
"types-pyyaml>=6.0",
"types-toml>=0.10",
]
security = [
"safety>=2",
]