From 93c752efc48ee6db5ffc789824c0cb2d75932fb3 Mon Sep 17 00:00:00 2001 From: ramnique <30795890+ramnique@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:22:09 +0530 Subject: [PATCH] add readthedocs yaml file --- apps/rowboat/.readthedocs.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 apps/rowboat/.readthedocs.yaml diff --git a/apps/rowboat/.readthedocs.yaml b/apps/rowboat/.readthedocs.yaml new file mode 100644 index 00000000..575f578e --- /dev/null +++ b/apps/rowboat/.readthedocs.yaml @@ -0,0 +1,23 @@ +# 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-24.04 + tools: + python: "3.13" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Optionally, but recommended, +# declare the Python requirements required to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: +# install: +# - requirements: docs/requirements.txt +