From 4ccdde8993e065738c1fa595974604ce7a565c08 Mon Sep 17 00:00:00 2001 From: "Adam.Dybbroe" Date: Fri, 15 Dec 2023 10:17:47 +0100 Subject: [PATCH] Bugfix for generating doc pages Signed-off-by: Adam.Dybbroe --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 24ccab0..43b8fbe 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,6 @@ scripts=['bin/fetch_tles.py', ], install_requires=['numpy>=1.19.0', 'scipy', 'requests'], python_requires='>=3.9', - extras_require=["sphinx", "sphinx_rtd_theme", "sphinxcontrib-apidoc"], + extras_require={"doc": ["sphinx", "sphinx_rtd_theme", "sphinxcontrib-apidoc"]}, zip_safe=False, )