-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.3 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
# SPDX-FileCopyrightText: 2024 Thomas Breitner
#
# SPDX-License-Identifier: MIT
[project]
name = "mkdocs-mpgtheme-plugin"
dynamic = ["version"]
description = "MkDocs plugin to add some MPG branding to the Material for MkDocs theme"
authors = [{name = "Thomas Breitner", email = "mail@thms.de"},]
license = {file = "LICENSES/MIT.txt"}
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Framework :: MkDocs",
"Topic :: Documentation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
]
dependencies = [
"mkdocs>=1.6",
"mkdocs-material>=9.0.0",
"mkdocs-static-i18n>=1.3.0",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"reuse",
]
pypi = [
"build",
"twine",
]
[project.entry-points."mkdocs.plugins"]
mpgtheme = "mkdocs_mpgtheme_plugin.plugin:MpgThemePlugin"
[project.urls]
Repository = "https://github.com/tombreit/mkdocs-mpgtheme-plugin"
Homepage = "https://github.com/tombreit/mkdocs-mpgtheme-plugin"
Documentation = "https://github.com/tombreit/mkdocs-mpgtheme-plugin/blob/main/README.md"
Issues = "https://github.com/tombreit/mkdocs-mpgtheme-plugin/issues"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]