-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (71 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
83 lines (71 loc) · 1.78 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
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
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mkdocs-material-ekgf"
dynamic = ["version"]
description = "A custom Material for MkDocs theme for EKGF documentation websites"
authors = [
{name = "Jacobus Geluk", email = "jacobus.geluk@ekgf.org"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.14.3"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
]
dependencies = [
"mkdocs>=1.5.0,<2",
"mkdocs-material>=9.0.0",
]
[project.urls]
Homepage = "https://ekgf.org"
Documentation = "https://github.com/EKGF/mkdocs-material-ekgf"
Repository = "https://github.com/EKGF/mkdocs-material-ekgf"
Issues = "https://github.com/EKGF/mkdocs-material-ekgf/issues"
[project.optional-dependencies]
dev = [
"ruff>=0.15.1",
"mypy>=1.11.0",
"pytest>=8.3.0",
"twine>=5.0.0",
]
social = [
"playwright>=1.58.0",
]
[project.entry-points."mkdocs.themes"]
material-ekgf = "mkdocs_material_ekgf"
[project.entry-points."mkdocs.plugins"]
material-ekgf = "mkdocs_material_ekgf:MaterialEkgfPlugin"
[tool.hatch.version]
path = "mkdocs_material_ekgf/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["mkdocs_material_ekgf"]
[tool.hatch.build.targets.sdist]
include = [
"mkdocs_material_ekgf",
"README.md",
"LICENSE",
"INTEGRATION.md",
"QUICKSTART.md",
"SUMMARY.md",
"DEVELOPMENT.md",
]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[dependency-groups]
dev = [
"twine>=6.2.0",
]