Sumit Semwal | 96df5d7 | 2023-07-17 16:16:40 +0530 | [diff] [blame^] | 1 | # .readthedocs.yaml |
| 2 | |
| 3 | # Read the Docs configuration file |
| 4 | |
| 5 | # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details |
| 6 | |
| 7 | # Required |
| 8 | |
| 9 | version: 2 |
| 10 | |
| 11 | # Set the version of Python and other tools you might need |
| 12 | |
| 13 | build: |
| 14 | |
| 15 | os: ubuntu-22.04 |
| 16 | |
| 17 | tools: |
| 18 | |
| 19 | python: "3.10" |
| 20 | |
| 21 | apt_packages: |
| 22 | |
| 23 | - plantuml |
| 24 | |
| 25 | # Other variants to build than HTML |
| 26 | |
| 27 | formats: all |
| 28 | |
| 29 | # Build documentation in the docs/ directory with Sphinx |
| 30 | |
| 31 | sphinx: |
| 32 | |
| 33 | configuration: docs/conf.py |
| 34 | |
| 35 | fail_on_warning: true |
| 36 | |
| 37 | # Declare the Python requirements required to build your docs |
| 38 | |
| 39 | python: |
| 40 | |
| 41 | install: |
| 42 | |
| 43 | - requirements: docs/requirements.txt |
| 44 | |
| 45 | system_packages: false |