forked from lukasgeiter/mkdocs-awesome-nav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 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
[tool.poetry]
name = "mkdocs-awesome-pages-plugin"
version = "2.8.0"
description = "An MkDocs plugin that simplifies configuring page titles and their order"
authors = ["Lukas Geiter <[email protected]>", "Owen Liuyuxuan <yxliu>"]
repository = "https://github.com/Owen-Liuyuxuan/mkdocs-awesome-pages-plugin/"
readme = "README.md"
license = "MIT"
keywords = ["mkdocs", "python", "markdown", "wiki"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology"
]
exclude = ["mkdocs_awesome_pages_plugin/tests"]
[tool.poetry.plugins."mkdocs.plugins"]
modified-awesome-pages = "mkdocs_awesome_pages_plugin.plugin:AwesomePagesPlugin"
[tool.poetry.dependencies]
python = ">=3.6.2"
mkdocs = ">=1"
wcmatch = ">=7"
natsort = ">=8.1.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
beautifulsoup4 = "^4.10.0"
mock-open = "^1.4.0"
black = { extras = ["d"], version = "^21.12b0" }
[tool.black]
line-length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"