-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (88 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
95 lines (88 loc) · 2.23 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "sphinxcontrib-httpexample"
version = "2.1.dev0"
description = "Adds example directive for sphinx-contrib httpdomain"
readme = "README.md"
keywords = ["sphinx", "extension", "http", "rest", "documentation"]
authors = [
{name = "Asko Soukka", email = "asko.soukka@iki.fi"}
]
license = {text="GPL-2.0-only"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Documentation",
"Topic :: Utilities"
]
urls = { "Repository" = "https://github.com/collective/sphinxcontrib-httpexample"}
requires-python = ">= 3.10"
dependencies = [
"docutils",
"importlib-metadata",
"importlib-resources",
"sphinx",
"sphinxcontrib-httpdomain",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/sphinxcontrib"]
exclude = ["tests"]
[dependency-groups]
dev = [
"black>=25.1.0",
"coverage>=7.7.1",
"isort>=6.0.1",
"mypy>=1.15.0",
"pytest>=8.3.5",
"pytest-cov>=6.0.0",
"snapshottest==1.0.0a1",
"sphinx-autobuild",
"sphinx-copybutton>=0.5.2",
"sphinx-design",
"sphinx-inline-tabs",
"sphinx-rtd-theme",
"sphinx-testing",
"zest-releaser>=9.4.0",
"watchfiles<1.1; python_version < '3.14'",
"watchfiles>=1.1; python_version >= '3.14'",
]
[project.optional-dependencies]
test = []
sphinx823 = [
"sphinx==8.2.3; python_version >= '3.11'"
]
sphinx813 = [
"babel",
"sphinx==8.1.3; python_version >= '3.10'"
]
sphinx802 = [
"sphinx==8.0.2; python_version >= '3.10'"
]
sphinx747 = [
"sphinx==7.4.7; python_version >= '3.10'"
]
[tool.uv]
conflicts = [
[
{ extra = "sphinx823" },
{ extra = "sphinx813" },
{ extra = "sphinx802" },
{ extra = "sphinx747" },
],
]
[tool.isort]
force_alphabetical_sort_within_sections = true
force_single_line = true
from_first = true
line_length = 200
lines_after_imports = 2
lines_between_types = 0
no_sections = true