-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.33 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
[tool.poetry]
name = "mkdocs-jconfig-plugin"
version = "0.1.2"
description = "An MkDocs plugin to process configuration items with Jinja2"
authors = ["Jacques Supcik <jacques.supcik@hefr.ch>"]
repository = "https://github.com/supcik/mkdocs-jconfig-plugin"
license = "Apache-2"
readme = "README.md"
packages = [{ include = "mkdocs_jconfig" }]
keywords = ["mkdocs", "python", "markdown", "wiki"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology"
]
exclude = ["test"]
[tool.poetry.dependencies]
python = "^3.10"
mkdocs = "^1.5.2"
mkdocs-material = { version = "^9.3.1", optional = true }
mkdocs-macros-plugin = { version = "^1.0.4", optional = true }
[tool.poetry.extras]
test = ["mkdocs-material", "mkdocs-macros-plugin"]
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
pylint = "^2.17.5"
isort = "^5.12.0"
pre-commit = "^3.4.0"
mkdocs-calendar-plugin = "^0.4.0"
ruff = "^0.0.288"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins]
[tool.poetry.plugins."mkdocs.plugins"]
jconfig = "mkdocs_jconfig.plugin:JConfigPlugin"
[tool.ruff]
# On top of the defaults (`E`, `F`), enable flake8-bugbear (`B`) and flake8-quotes (`Q`).
select = ["E", "F", "B", "Q", "N", "I", "UP", "PL", "RUF", "C90"]