-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.6 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
[project]
name = "mkdocs-macros-plugin"
# This version number is the REFERENCE for the rest of the project,
# particularly for update_pypi.sh
version = "1.5.0"
description = "Unleash the power of MkDocs with macros and variables"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
authors = [{ name = "Laurent Franceschetti" }]
keywords = ["macros", "markdown", "mkdocs", "python"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
]
dependencies = [
"hjson",
"jinja2",
"mkdocs>=0.17",
"packaging",
"pathspec",
"python-dateutil",
"pyyaml",
"requests",
"super-collections >= 0.6.2",
"termcolor",
]
[tool.setuptools]
packages = { find = { exclude = ["*.tests"] } }
[project.optional-dependencies]
test = [
"pytest",
"mkdocs-include-markdown-plugin",
"mkdocs-macros-test",
"mkdocs-material>=6.2",
"mkdocs-test>=0.6.0",
"mkdocs-d2-plugin",
]
# for the MkDocs documentation (webdoc/)
doc = ["mkdocs-mermaid2-plugin"]
[project.entry-points."mkdocs.plugins"]
macros = "mkdocs_macros.plugin:MacrosPlugin"
[project.urls]
Homepage = "https://github.com/fralau/mkdocs_macros_plugin"