blob: 7bf51d8919fd7f11560981f8248059edffe9a59f [file] [log] [blame]
Elena Uziunaitebd4d7a92023-10-24 15:58:31 +01001#-------------------------------------------------------------------------------
2#
3# Copyright (c) 2023, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7#-------------------------------------------------------------------------------
8
9# Read the Docs configuration file
10# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
11
12# Version of the configuration file, v1 is no longer supported
13version: 2
14
15# Configuration for the documentation build
16build:
17 os: ubuntu-22.04
18 tools:
19 python: "3.11"
20 apt_packages:
21 - plantuml
22
23# Build documentation in the "docs/" directory with Sphinx
24sphinx:
25 configuration: docs/conf.py
26
27# The documentation will also be built in a pdf format
28formats:
29 - pdf
Elena Uziunaite12e0ae62023-11-07 16:57:07 +000030 - htmlzip
Elena Uziunaitebd4d7a92023-10-24 15:58:31 +010031
32# Configuration of the Python environment
33python:
34 install:
35 - requirements: docs/requirements.txt