blob: e01c24572ec9fea958c2a72e93419870368b08af [file] [log] [blame]
Sumit Semwal96df5d72023-07-17 16:16:40 +05301# .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
9version: 2
10
11# Set the version of Python and other tools you might need
12
13build:
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
27formats: all
28
29# Build documentation in the docs/ directory with Sphinx
30
31sphinx:
32
33 configuration: docs/conf.py
34
35 fail_on_warning: true
36
37# Declare the Python requirements required to build your docs
38
39python:
40
41 install:
42
43 - requirements: docs/requirements.txt
44
45 system_packages: false