Move sphinxcontrib modules to extras_require
Gbp-Pq: Name move_sphinxcontrib_to_extras_require.diff
This commit is contained in:
parent
a1633a7d3b
commit
4e1d740dc1
14
setup.py
14
setup.py
|
@ -15,12 +15,6 @@ if sys.version_info < (3, 6):
|
|||
sys.exit(1)
|
||||
|
||||
install_requires = [
|
||||
'sphinxcontrib-applehelp',
|
||||
'sphinxcontrib-devhelp',
|
||||
'sphinxcontrib-jsmath',
|
||||
'sphinxcontrib-htmlhelp>=2.0.0',
|
||||
'sphinxcontrib-serializinghtml>=1.1.5',
|
||||
'sphinxcontrib-qthelp',
|
||||
'Jinja2>=2.3',
|
||||
'Pygments>=2.0',
|
||||
'docutils>=0.14,<0.18',
|
||||
|
@ -57,6 +51,14 @@ extras_require = {
|
|||
"typed_ast; python_version < '3.8'",
|
||||
'cython',
|
||||
],
|
||||
'sphinxcontrib': [
|
||||
'sphinxcontrib-applehelp',
|
||||
'sphinxcontrib-devhelp',
|
||||
'sphinxcontrib-jsmath',
|
||||
'sphinxcontrib-htmlhelp>=2.0.0',
|
||||
'sphinxcontrib-serializinghtml>=1.1.5',
|
||||
'sphinxcontrib-qthelp',
|
||||
],
|
||||
}
|
||||
|
||||
# Provide a "compile_catalog" command that also creates the translated
|
||||
|
|
Loading…
Reference in New Issue