From 74ea96ebb610bed896cf5edab55bdc97b39f701c Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Tue, 16 Jun 2020 16:09:23 -0500 Subject: [PATCH] Add doc build requirements to extras in setup.py --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 4583ebcd5..6afac4df1 100755 --- a/setup.py +++ b/setup.py @@ -71,6 +71,8 @@ kwargs = { ], 'extras_require': { 'depletion-mpi': ['mpi4py'], + 'docs': ['sphinx', 'sphinxcontrib-katex', 'sphinx-numfig', 'jupyter', + 'sphinxcontrib-svg2pdfconverter', 'sphinx-rtd-theme'], 'test': ['pytest', 'pytest-cov', 'colorama'], 'vtk': ['vtk'], },