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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
[project]
name = "Pallets-Sphinx-Themes"
version = "2.3.0"
description = "Sphinx themes for Pallets and related projects."
readme = "README.md"
license = { file = "LICENSE.txt" }
maintainers = [{ name = "Pallets", email = "contact@palletsprojects.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Sphinx",
"Framework :: Sphinx :: Theme",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation",
]
requires-python = ">=3.8"
dependencies = [
"packaging",
"sphinx>=3",
"sphinx-notfound-page",
]
[project.urls]
Donate = "https://palletsprojects.com/donate"
Source = "https://github.com/pallets/pallets-sphinx-themes/"
Chat = "https://discord.gg/pallets"
[project.entry-points."pygments.styles"]
pocoo = "pallets_sphinx_themes.themes.pocoo:PocooStyle"
jinja = "pallets_sphinx_themes.themes.jinja:JinjaStyle"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "pallets_sphinx_themes"
[tool.flit.sdist]
include = [
"requirements/",
"CHANGES.rst",
]
[tool.ruff]
src = ["src"]
fix = true
show-fixes = true
output-format = "full"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"W", # pycodestyle warning
]
[tool.ruff.lint.isort]
force-single-line = true
order-by-type = false
[tool.gha-update]
tag-only = [
"slsa-framework/slsa-github-generator",
]
|