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 73 74 75 76
|
[project]
name = "sphinxcontrib-httpdomain"
version = "2.0.0"
description = "Sphinx extension that provides a domain for documenting HTTP APIs."
keywords = [
"Sphinx",
"extension",
"documentation",
"contrib",
"HTTP",
"API",
"domain",
]
readme = "README.rst"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
maintainers = [
{ name = "Steve Piercy", email = "spiercy@plone.org" },
{ name = "Adam Turner"},
]
authors = [
{ name = "Hong Minhee" },
{ name = "Ash Berlin-Taylor", email = "ash_github@firemirror.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx :: Domain",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Documentation",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"sphinx>=6.0",
]
[project.urls]
Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
Documentation = "https://sphinxcontrib-httpdomain.readthedocs.io/en/stable/"
Download ="https://pypi.org/project/sphinxcontrib-httpdomain/"
Funding = "https://github.com/sponsors/stevepiercy"
Homepage = "https://github.com/sphinx-contrib/httpdomain"
Issues = "https://github.com/sphinx-contrib/httpdomain/issues"
# TODO: Releasenotes = ""
Repository = "https://github.com/sphinx-contrib/httpdomain"
[dependency-groups]
dev = [
"bottle>=0.13.4",
"flask>=3.1.2",
"pytest>=9.0.2",
"sphinx-autobuild>=2024.10.3",
"tornado>=6.5.4",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
namespaces = true
include = ["sphinxcontrib*"]
where = ["src"]
|