-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (36 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (36 loc) · 1.36 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
[project]
name = "waldur-docs"
version = "0.1.0"
description = ""
authors = [{name = "OpenNode Team", email = "info@opennodecloud.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
# Migrated off the original MkDocs ecosystem (Mar 2026): mkdocs core stalled,
# mkdocs-material entered maintenance mode, and "MkDocs 2.0" drops plugin support.
# ProperDocs is a drop-in fork of mkdocs 1.6.1; MaterialX continues mkdocs-material 9.7.1.
# mkdocs is pinned <2 as belt-and-suspenders against an accidental v2 release on PyPI.
"properdocs>=1.6.7",
"mkdocs<2",
"mkdocs-materialx>=10.1.4",
"mkdocs-git-revision-date-plugin>=0.3.2",
"mkdocs-print-site-plugin>=2.6.0",
"mkdocs-render-swagger-plugin>=0.1.2",
"mkdocs-glightbox>=0.4.0",
"pymdown-extensions>=10.12",
"mkdocs-awesome-pages-plugin>=2.9.3",
"mkdocs-video>=1.5.0",
"mike>=2.1.3",
"mkdocs-unused-files>=0.2.0",
"mkdocs-include-markdown-plugin>=7.1.7",
# Direct constraints to clear transitive CVEs flagged by osv-scanner
"gitpython>=3.1.49", # GHSA-7545/rpm5/v87r/x2qx — pulled in via mkdocs-document-dates
"lxml>=6.1.0", # GHSA-vfmq-68hx-4jfw — pulled in via mkdocs-print-site-plugin
"mkdocs-d2-plugin",
]
[tool.uv]
package = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"