-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 892 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 892 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-gen-nav-plugin"
version = "0.2.0"
authors = [
{ name="soonoh", email="soonoh.jung@gmail.com" },
{ name="FrozenSource", email="bram.nijenkamp@dataacess.eu"}
]
description = "Mkdocs plugin to generate nav list from docs dir"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
"mkdocs>=1.4.2",
]
[project.urls]
"Homepage" = "https://github.com/vrerv/mkdocs-gen-nav-plugin"
"Bug Tracker" = "https://github.com/vrerv/mkdocs-gen-nav-plugin/issues"
[project.entry-points."mkdocs.plugins"]
gen_nav = "mkdocs_gen_nav_plugin.plugin:GenNavPlugin"
[tool.hatch.envs.dev]
type = "conda"