-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.34 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
[project]
name = "sphinx-rijkshuisstijl-2008-theme"
description = "Sphinx theme for the Rijkshuisstijl 2008 theme"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"Sphinx==8.2.3",
]
[dependency-groups]
dev = [
"myst-parser==5.0.0",
"sphinx-autobuild==2025.8.25",
"sphinxcontrib-mermaid==2.0.1",
"autodoc_pydantic==2.2.0",
]
[project.entry-points]
"sphinx.html_themes" = { sphinx_rijkshuisstijl_2008 = "sphinx_rijkshuisstijl_2008" }
[build-system]
requires = ["setuptools>=80", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["docs*"]
[tool.setuptools.package-data]
sphinx_rijkshuisstijl_2008 = [
# Theme templates
"theme/sphinx_rijkshuisstijl_2008/layout.html",
"theme/sphinx_rijkshuisstijl_2008/search.html",
"theme/sphinx_rijkshuisstijl_2008/theme.conf",
# Static files
"theme/sphinx_rijkshuisstijl_2008/static/css/*.css",
"theme/sphinx_rijkshuisstijl_2008/static/js/*.js",
"theme/sphinx_rijkshuisstijl_2008/static/fonts/**/*",
"theme/sphinx_rijkshuisstijl_2008/static/img/**/*",
# Optional templates folder
"theme/sphinx_rijkshuisstijl_2008/templates/**/*"
]
[tool.setuptools.exclude-package-data]
sphinx_rijkshuisstijl_2008 = [
"__pycache__/*",
"*.py[cod]"
]