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 8# Set the version of tools you might need 9build: 10 os: ubuntu-20.04 11 tools: 12 python: "3.8" 13 apt_packages: 14 - plantuml 15 - wget 16 jobs: 17 post_install: 18 - wget https://github.com/plantuml/plantuml/releases/download/v1.2024.7/plantuml-1.2024.7.jar -O $HOME/plantuml.jar 19 20# Build documentation in the docs/ directory with Sphinx 21sphinx: 22 configuration: docs/conf.py 23 24# Optionally declare the Python requirements required to build your docs 25python: 26 install: 27 - requirements: docs/requirements.txt 28