-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
72 lines (64 loc) · 1.87 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-simple-plugin"
dynamic = ["version"]
description = "Plugin for adding simple wiki site creation from markdown files interspersed within your code with MkDocs."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3"
authors = [
{ name = "Allison Thackston", email = "[email protected]" },
]
keywords = [
"mkdocs",
"readme",
"wiki",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"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"
]
# md file="versions.snippet"
# _Python 3.x, 3.8, 3.9, 3.10, 3.11 supported._
# /md
dependencies = [
"click>=7.1",
"MarkupSafe>=2.1.1",
"mkdocs>=1.6.0",
"PyYAML>=6.0",
]
[project.scripts]
mkdocs_simple_gen = "mkdocs_simple_plugin.generator:main"
[project.entry-points."mkdocs.plugins"]
simple = "mkdocs_simple_plugin.plugin:SimplePlugin"
[project.urls]
Documentation = "http://www.althack.dev/mkdocs-simple-plugin"
Homepage = "http://www.althack.dev/mkdocs-simple-plugin"
Issues = "https://github.com/athackst/mkdocs-simple-plugin/issues"
"Source Code" = "https://github.com/athackst/mkdocs-simple-plugin"
[tool.hatch.version]
path = "VERSION"
pattern = "(?P<version>.+)"
[tool.hatch.build.targets.sdist]
include = [
"/mkdocs_simple_plugin",
]
[tool.hatch.build.targets.wheel]
packages = ["mkdocs_simple_plugin"]
[tool.hatch.envs.docs]
dependencies = [
"mkdocs",
"mkdocs-simple-plugin"
]
[tool.hatch.envs.docs.scripts]
build = "mkdocs_simple_gen --build"
serve = "mkdocs_simple_gen --serve"