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" ]