-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/admonitions"]
[project]
name="mkdocs-github-admonitions-plugin"
description="Convert GitHub admonitions to mkdocs syntax when building docs."
readme="docs/README.md"
keywords=["github", "mkdocs", "material", "admonition"]
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: MkDocs",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Documentation",
"Programming Language :: Python :: 3",
]
authors=[
{"name" = "Pieter Gijsbers"},
]
version="0.0.3"
requires-python=">=3.8"
dependencies=[
"mkdocs",
]
[project.urls]
Homepage="https://pgijsbers.github.io/admonitions"
Repository="https://www.github.com/pgijsbers/admonitions.git"
Issues="https://www.github.com/pgijsbers/admonitions/issues"
[project.optional-dependencies]
docs=[
"mkdocs-material",
]
dev=[
"pytest",
]
[project.entry-points."mkdocs.plugins"]
gh-admonitions = "admonitions.admonition:AdmonitionConverter"