From bae85e1b09d19e12a0a38b8071cd80f057b22fe6 Mon Sep 17 00:00:00 2001 From: Nicolai Buchwitz Date: Thu, 12 Feb 2026 15:02:10 +0100 Subject: [PATCH] docs: add docs extra dependencies and missing _static directory The Read the Docs build fails because the "docs" extra is referenced in .readthedocs.yaml but not defined in setup.py, so sphinx_rtd_theme is never installed. Signed-off-by: Nicolai Buchwitz --- docs/_static/.gitkeep | 0 setup.py | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 docs/_static/.gitkeep diff --git a/docs/_static/.gitkeep b/docs/_static/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 6f6f3c7..89291fe 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,12 @@ setup( python_requires=">= 3.2", install_requires=[], + extras_require={ + "docs": [ + "sphinx", + "sphinx_rtd_theme", + ], + }, entry_points={}, platforms=["all"],