Revision 5a54b95d9aa5ca1750abfdf55e79e8fc44264606 authored by Skye Wanderman-Milne on 20 July 2023, 22:01:10 UTC, committed by Skye Wanderman-Milne on 20 July 2023, 22:01:10 UTC
1 parent 60bb3bc
Raw File
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

build:
  os: "ubuntu-20.04"
  tools:
    python: "3.9"

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py
  fail_on_warning: true

# Optionally build your docs in additional formats such as PDF and ePub
formats:
  - htmlzip

# Optionally set the version of Python and requirements required to build your docs
python:
  install:
    - requirements: docs/requirements.txt
back to top