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
|
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zzzeeksphinx"
dynamic = ["version"]
description = "Zzzeek's Sphinx Layout and Utilities."
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Mike Bayer", email = "mike@zzzcomputing.com" },
]
keywords = [
"Sphinx",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
]
dependencies = [
"libsass",
"mako",
"requests",
"sphinx>=8.2,<8.3",
"sphinxcontrib-jquery",
]
[project.entry-points."pygments.lexers"]
"pycon+sql" = "zzzeeksphinx.sqlformatter:PyConWithSQLLexer"
"python+sql" = "zzzeeksphinx.sqlformatter:PythonWithSQLLexer"
[project.entry-points."sphinx.html_themes"]
zsbase = "zzzeeksphinx.theme"
zsmako = "zzzeeksphinx.theme"
zzzeeksphinx = "zzzeeksphinx.theme"
[project.urls]
Homepage = "https://github.com/sqlalchemyorg/zzzeeksphinx"
[tool.hatch.version]
path = "zzzeeksphinx/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/zzzeeksphinx",
]
[tool.black]
line-length = 79
|