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
|
[project]
name = "dask_sphinx_theme"
description = "Dask theme for Sphinx"
readme = "README.rst"
authors = [{ name = "Dask Developers" }]
dynamic = ["version"]
dependencies = [
"sphinx>=7.0",
"pyyaml",
"numpydoc",
"jsonschema",
"sphinx-book-theme>=1,<2",
]
license = { text = "BSD" }
requires-python = ">=3.11"
[project.urls]
Homepage = "https://github.com/dask/dask-sphinx-theme/"
[project.entry-points."sphinx.html_themes"]
dask_sphinx_theme = "dask_sphinx_theme"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["dask_sphinx_theme"]
ignore-vcs = true
[dependency-groups]
dev = ["sphinx-autobuild>=2025.8.25"]
|