Joakim Bech | 2d31047 | 2022-08-22 12:33:54 +0200 | [diff] [blame] | 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 |
Joakim Bech | ba552e8 | 2021-05-11 12:37:24 +0200 | [diff] [blame] | 6 | version: 2 |
| 7 | |
Joakim Bech | 2d31047 | 2022-08-22 12:33:54 +0200 | [diff] [blame] | 8 | # Set the version of Python and other tools you might need |
| 9 | build: |
| 10 | os: ubuntu-22.04 |
| 11 | tools: |
| 12 | python: "3.10" |
OneToken | 67b9f67 | 2023-05-10 09:56:50 +0800 | [diff] [blame] | 13 | apt_packages: |
| 14 | - plantuml |
| 15 | - graphviz |
Joakim Bech | ba552e8 | 2021-05-11 12:37:24 +0200 | [diff] [blame] | 16 | |
Joakim Bech | 2d31047 | 2022-08-22 12:33:54 +0200 | [diff] [blame] | 17 | # Other variants to build than HTML |
| 18 | formats: |
| 19 | - pdf |
| 20 | |
| 21 | # Build documentation in the docs/ directory with Sphinx |
| 22 | sphinx: |
| 23 | configuration: conf.py |
| 24 | |
| 25 | # Declare the Python requirements required to build your docs |
Joakim Bech | ba552e8 | 2021-05-11 12:37:24 +0200 | [diff] [blame] | 26 | python: |
Joakim Bech | 2d31047 | 2022-08-22 12:33:54 +0200 | [diff] [blame] | 27 | install: |
| 28 | - requirements: requirements.txt |