File: pyproject.toml

package info (click to toggle)
zzzeeksphinx 1.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 348 kB
  • sloc: python: 1,785; javascript: 158; makefile: 3
file content (53 lines) | stat: -rw-r--r-- 1,175 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
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