-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
hatch.toml
37 lines (37 loc) · 1.14 KB
/
hatch.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
[envs.docs]
detached = true
installer = "uv"
dependencies = [
"mkdocs~=1.6.1",
"mkdocs-material~=9.5.40",
# Plugins
"mkdocs-minify-plugin~=0.8.0",
"mkdocs-git-revision-date-localized-plugin~=1.2.9",
"mkdocs-glightbox~=0.4.0",
"mkdocs-redirects~=1.2.1",
"mike~=2.1.3",
# Extensions
"pymdown-extensions~=10.11.2",
# Necessary for syntax highlighting in code blocks
"pygments~=2.18.0",
# Validation
# https://github.com/linkchecker/linkchecker/pull/669#issuecomment-1267236287
"linkchecker @ git+https://github.com/linkchecker/linkchecker.git@d9265bb71c2054bf57b8c5734a4825d62505c779",
]
[envs.docs.overrides]
env.GITHUB_ACTIONS.env-vars = [
{ key = "MKDOCS_IMAGE_PROCESSING", value = "true", if = ["true"] },
]
[envs.docs.env-vars]
SOURCE_DATE_EPOCH = "1580601600"
PYTHONUNBUFFERED = "1"
[envs.docs.scripts]
build = "mkdocs build --clean --strict {args}"
serve = "mkdocs serve --dev-addr localhost:8000 {args}"
ci-build = "mike deploy --update-aliases {args}"
validate = "linkchecker --config .linkcheckerrc site"
# https://github.com/linkchecker/linkchecker/issues/678
build-check = [
"build --no-directory-urls",
"validate",
]