From: Dmitry Shachnev 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 8aa49aa..5dbb696 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.0", "Pygments>=2.14", "docutils>=0.18.1,<0.22", @@ -98,6 +92,14 @@ test = [ "cython>=3.0", "setuptools>=67.0", # for Cython compilation ] +sphinxcontrib = [ + "sphinxcontrib-applehelp", + "sphinxcontrib-devhelp", + "sphinxcontrib-jsmath", + "sphinxcontrib-htmlhelp>=2.0.0", + "sphinxcontrib-serializinghtml>=1.1.9", + "sphinxcontrib-qthelp", +] [[project.authors]] name = "Georg Brandl"