From 53636361db339d700a7067df5cb695870f2a614c Mon Sep 17 00:00:00 2001 From: Addie Nicole Reichert <89001005060579@fedidcard.gov> Date: Wed, 10 Jul 2024 09:16:28 -0600 Subject: [PATCH] First pass at a basic .readthedocs.yaml file --- .readthedocs.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index e69de29b..8bbcb97a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .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 version of Python and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/source/conf.py + +# We recommend specifying your dependencies to enable reproducible builds: +# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +# python: +# install: +# - requirements: docs/requirements.txt \ No newline at end of file