1# .readthedocs.yaml 2# Read the Docs configuration file 3# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 4 5# Required 6version: 2 7 8build: 9 os: "ubuntu-22.04" 10 tools: 11 python: "3.11" 12 13# Build documentation in the docs/ directory with Sphinx 14sphinx: 15 builder: html 16 configuration: docs/conf.py 17 18formats: 19 - htmlzip 20 - pdf 21 - epub 22 23# Optionally set the version of Python and requirements required to build your docs 24python: 25 install: 26 - requirements: docs/sphinx/requirements.txt