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
|
From: Dmitry Shachnev <mitya57@debian.org>
Date: Fri, 7 Feb 2020 13:59:30 +0300
Subject: Move sphinxcontrib modules to extras_require
---
pyproject.toml | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 3d8cce1..d923519 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -56,12 +56,6 @@ classifiers = [
"Topic :: Utilities",
]
dependencies = [
- "sphinxcontrib-applehelp",
- "sphinxcontrib-devhelp",
- "sphinxcontrib-jsmath",
- "sphinxcontrib-htmlhelp>=2.0.0",
- "sphinxcontrib-serializinghtml>=1.1.9",
- "sphinxcontrib-qthelp",
"Jinja2>=3.1",
"Pygments>=2.17",
"docutils>=0.20,<0.22",
@@ -99,6 +93,14 @@ test = [
"setuptools>=70.0", # for Cython compilation
"typing_extensions>=4.9", # for typing_extensions.Unpack
]
+sphinxcontrib = [
+ "sphinxcontrib-applehelp",
+ "sphinxcontrib-devhelp",
+ "sphinxcontrib-jsmath",
+ "sphinxcontrib-htmlhelp>=2.0.0",
+ "sphinxcontrib-serializinghtml>=1.1.9",
+ "sphinxcontrib-qthelp",
+]
[[project.authors]]
name = "Georg Brandl"
|