From 300871bc116884a2f8ff017c35455724f2582d30 Mon Sep 17 00:00:00 2001 From: l <56237933+lcdunne@users.noreply.github.com> Date: Mon, 9 Sep 2024 19:53:16 +0100 Subject: [PATCH] Include docs requirements for building rtd --- .readthedocs.yaml | 4 +++- pyproject.toml | 8 +++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 8999c1d..324b00a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -10,4 +10,6 @@ sphinx: python: install: - method: pip - path: . \ No newline at end of file + path: . + extra_requirements: + - docs \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e7741c5..d9c399f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "flask-reqcheck" -version = "0.0.9" +version = "0.0.10" description = "Request validation for Flask applications using Pydantic." keywords = ["Python", "Flask", "validation"] authors = [{name = "Lewis Dunne"}] @@ -30,6 +30,12 @@ dev = [ "Pallets-Sphinx-Themes", "pytest", "python-dotenv", + "sphinx", +] + +docs = [ + "numpydoc", + "Pallets-Sphinx-Themes", "sphinx" ]