-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.19 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
# ============================================================
# pyproject.toml (Python and MkDocs project configuration)
# ============================================================
# REQ.PYTHON: Python projects MUST include pyproject.toml as the single source of truth.
# WHY: Centralizes project configuration.
[project]
name = "structural-explainability-site"
version = "0.0.0"
description = "Organization website for Structural Explainability"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "Structural Explainability", email = "info@structuralexplainability.org" }
]
dependencies = []
[project.optional-dependencies]
dev = [
"pre-commit",
"validate-pyproject",
]
docs = [
"mike",
"mkdocs",
"mkdocs-gen-files",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-include-markdown-plugin",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-static-i18n",
"mkdocstrings[python]",
"pymdown-extensions",
"ruff",
]
[project.urls]
"Home" = "https://structural-explainability.github.io/site/"
"Repo" = "https://github.com/structural-explainability/site"
"Issues" = "https://github.com/structural-explainability/site/issues"
[tool.uv]
package = false