blob: 6aea12d0bb16e7220eea26bd83bc389b5e5fd78d [file] [log] [blame]
Gabor Toth11192a22023-04-04 12:40:16 +02001# .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
Gyorgy Szinga7273c92024-10-28 09:58:14 +010015 - 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
Gabor Toth11192a22023-04-04 12:40:16 +020019
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:
Gyorgy Szinga7273c92024-10-28 09:58:14 +010027 - requirements: docs/requirements.txt