summaryrefslogtreecommitdiff
path: root/.readthedocs.yaml
blob: 4be67b7567981acf6b200892b488f3338a3ee248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Configuration file version
version: 2

# Set the versions of the tools
build:
  os: ubuntu-20.04
  tools:
    python: "3.11"

python:
  install:
    - requirements: doc-requirements.txt
    - method: setuptools  # runs setup.py
      path: .
  system_packages: true

sphinx:
  builder: html
  configuration: docs/conf.py

# Don't build the docs in additional formats like pdf or epub
formats: []