From dece04900d1b2b2ca0d50d4158b668124c1a7645 Mon Sep 17 00:00:00 2001 From: DoronHav Date: Thu, 25 Apr 2024 15:27:46 -0400 Subject: [PATCH] fix ident in yaml --- readthedocs.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 readthedocs.yaml diff --git a/readthedocs.yaml b/readthedocs.yaml new file mode 100644 index 0000000..dda8e68 --- /dev/null +++ b/readthedocs.yaml @@ -0,0 +1,36 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Required +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.9" + # You can also specify other tool versions: + # nodejs: "20" + # rust: "1.70" + # golang: "1.20" + jobs: + pre_build: + - sphinx-apidoc ... + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# Optionally build your docs in additional formats such as PDF and ePub +# formats: +# - pdf +# - epub + +# Optional but recommended, declare the Python requirements required +# to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + setup_py_install: true + install: + - requirements: docs/docs_requirements.txt