-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.35 KB
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
[project]
name = "mkdocs-placeholder-plugin"
version = "0.6.0"
description = "Add dynamic placeholders to your mkdocs page"
authors = [
{name = "six-two",email = "pip@six-two.dev"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"mkdocs (>=1.4.0)"
]
license = "MIT"
homepage = "https://github.com/six-two/mkdocs-placeholder-plugin"
repository = "https://github.com/six-two/mkdocs-placeholder-plugin"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
include = [
{ path = "src/mkdocs_placeholder_plugin/assets/placeholder-data.js", format = ["sdist", "wheel"] },
{ path = "src/mkdocs_placeholder_plugin/assets/placeholder.min.js", format = ["sdist", "wheel"] },
{ path = "src/mkdocs_placeholder_plugin/assets/placeholder.min.js.map", format = ["sdist", "wheel"] },
"LICENSE",
"README.md"
]
[tool.poetry.group.dev.dependencies]
mkdocs-material = "^9.6.18"
mypy = "^1.17.1"
mkdocs-badges = "^0.5.0"
mkdocs-languagetool-plugin = "^0.1.0"
mkdocs-spellcheck = "^1.1.2"
mkdocs-git-revision-date-localized-plugin = "^1.4.7"
# For type checking:
types-PyYAML = "^6.0.12.20250915"
[tool.poetry.plugins."mkdocs.plugins"]
placeholder = "mkdocs_placeholder_plugin.mkdocs:PlaceholderPlugin"
[tool.mypy]
files = ["src/mkdocs_placeholder_plugin/**/*.py"]
ignore_missing_imports = true