File: pyproject.toml

package info (click to toggle)
dask-sphinx-theme 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: python: 1,419; makefile: 16; javascript: 10
file content (32 lines) | stat: -rw-r--r-- 707 bytes parent folder | download
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"]