-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (36 loc) · 1.32 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-callouts"
version = "1.15.0"
keywords = ["mkdocs", "mkdocs-plugin", "markdown", "callouts", "admonitions", "obsidian"]
description = "A simple plugin that converts Obsidian style callouts and converts them into mkdocs supported 'admonitions' (a.k.a. callouts)."
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "Sondre Grønås", email = "[email protected]" }]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation"
]
dependencies = [
"mkdocs>=1"
]
[project.urls]
homepage = "https://github.com/sondregronas/mkdocs-callouts"
documentation = "https://github.com/sondregronas/mkdocs-callouts"
repository = "https://github.com/sondregronas/mkdocs-callouts"
issues = "https://github.com/sondregronas/mkdocs-callouts/issues"
funding = "https://github.com/sponsors/sondregronas"
[project.optional-dependencies]
tests = [
'pytest'
]
[project.entry-points."mkdocs.plugins"]
callouts = "mkdocs_callouts.plugin:CalloutsPlugin"