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
|
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mpl_sphinx_theme"
dynamic = ["version"]
description = "Matplotlib theme for Sphinx"
readme = "README.rst"
requires-python = ">=3"
license = {file = "LICENSE.txt"}
authors = [
{name = "Matplotlib Developers"},
]
classifiers = [
"Framework :: Sphinx :: Theme",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
]
dependencies = [
"pydata-sphinx-theme>=0.13.1",
"matplotlib",
]
[project.urls]
homepage = "https://matplotlib.org/mpl-sphinx-theme/"
repository = "https://github.com/matplotlib/mpl-sphinx-theme"
# http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
[project.entry-points."sphinx.html_themes"]
mpl_sphinx_theme = "mpl_sphinx_theme"
[tool.setuptools]
packages = ["mpl_sphinx_theme"]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "mpl_sphinx_theme.__version__"}
[tool.setuptools.package-data]
mpl_sphinx_theme = [
"theme.conf",
"*.html",
"static/css/*.css",
"static/*.svg",
"static/images/*.ico",
"static/js/*.js",
"static/font/*.*",
"components/*.html",
]
|