-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
110 lines (103 loc) · 3.34 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "markdown-exec"
description = "Utilities to execute code blocks in Markdown files."
authors = [{name = "Timothée Mazzucotelli", email = "[email protected]"}]
license = {text = "ISC"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["markdown", "python", "exec", "shell", "bash", "mkdocs"]
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",
"Programming Language :: Python :: 3.12",
"Topic :: Documentation",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"pymdown-extensions>=9",
]
[project.optional-dependencies]
ansi = ["pygments-ansi-color"]
[project.urls]
Homepage = "https://pawamoy.github.io/markdown-exec"
Documentation = "https://pawamoy.github.io/markdown-exec"
Changelog = "https://pawamoy.github.io/markdown-exec/changelog"
Repository = "https://github.com/pawamoy/markdown-exec"
Issues = "https://github.com/pawamoy/markdown-exec/issues"
Discussions = "https://github.com/pawamoy/markdown-exec/discussions"
Gitter = "https://gitter.im/markdown-exec/community"
Funding = "https://github.com/sponsors/pawamoy"
[project.entry-points."mkdocs.plugins"]
markdown-exec = "markdown_exec.mkdocs_plugin:MarkdownExecPlugin"
[tool.pdm]
version = {source = "scm"}
plugins = [
"pdm-multirun",
]
[tool.pdm.build]
package-dir = "src"
editable-backend = "editables"
[tool.pdm.dev-dependencies]
duty = ["duty>=0.10"]
ci-quality = ["markdown-exec[duty,docs,quality,typing,security]"]
ci-tests = ["markdown-exec[duty,tests]"]
docs = [
"black>=23.9; python_version < '3.12'",
"markdown-callouts>=0.3; python_version < '3.12'",
"markdown-exec>=1.6; python_version < '3.12'",
"mkdocs>=1.5; python_version < '3.12'",
"mkdocs-coverage>=1.0; python_version < '3.12'",
"mkdocs-gen-files>=0.5; python_version < '3.12'",
"mkdocs-git-committers-plugin-2>=1.2; python_version < '3.12'",
"mkdocs-literate-nav>=0.6; python_version < '3.12'",
"mkdocs-material>=9.4; python_version < '3.12'",
"mkdocs-minify-plugin>=0.7; python_version < '3.12'",
"mkdocstrings[python]>=0.23; python_version < '3.12'",
"tomli>=2.0; python_version < '3.11'",
# gallery dependencies
"toml>=0.10; python_version < '3.12'",
"pydeps>=1.12; python_version < '3.12'",
"diagrams>=0.21; python_version < '3.12'",
"rich>=12.3; python_version < '3.12'",
"matplotlib>=3.5; python_version < '3.12'",
"numpy>=1.23; python_version < '3.12'",
"textual; python_version < '3.12'",
"pytermgui>=6.3; python_version < '3.12'",
"pipdeptree>=2.6; python_version < '3.12'",
]
maintain = [
"black>=23.9",
"blacken-docs>=1.16",
"git-changelog>=2.3",
]
quality = [
"ruff>=0.0",
]
tests = [
"pytest>=7.4",
"pytest-cov>=4.1",
"pytest-randomly>=3.15",
"pytest-xdist>=3.3",
"pygments>=2.15",
]
typing = [
"mypy>=1.5",
"types-markdown>=3.5",
"types-pyyaml>=6.0",
]
security = [
"safety>=2.3",
]