-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.05 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-entangled-plugin"
version = "0.6.0"
description = "Plugin for MkDocs helping with rendering Entangled (entangled.github.io) projects."
authors = [{ name = "Johan Hidding", email = "j.hidding@esciencecenter.nl" }]
requires-python = ">=3.12,<4"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"mkdocs>=1.4.2,<2",
"entangled-cli>=2.4,<3",
"mawk>=0.1.7,<0.2",
]
[project.entry-points."mkdocs.plugins"]
entangled = "mkdocs_entangled:EntangledPlugin"
[dependency-groups]
dev = [
"mypy>=1.2.0,<2",
"pytest>=7.3.0,<8",
"pytest-mypy>=0.10.3,<0.11",
"mkdocs-material>=9.1.6,<10",
"pyright>=1.1.406",
]
[tool.hatch.build.targets.sdist]
include = ["mkdocs_entangled"]
[tool.hatch.build.targets.wheel]
include = ["mkdocs_entangled"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = ["--mypy"]
testpaths = [
"test"
]
[tool.mypy]
packages = ["mkdocs_entangled"]
[tool.uv.sources]
entangled-cli = { git = "https://github.com/entangled/entangled.py" }