• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# .readthedocs.yml
2# Read the Docs configuration file
3# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
5# Required
6version: 2
7
8build:
9  image: latest
10
11# Build documentation in the docs/ directory with Sphinx
12sphinx:
13  configuration: Doc/source/conf.py
14  fail_on_warning: false
15
16# Optionally build your docs in additional formats such as PDF and ePub
17formats:
18  - htmlzip
19  - epub
20
21# Optionally set the version of Python and requirements required to build your docs
22python:
23  version: 3.8
24  install:
25    - requirements: Doc/docs-requirements.txt
26    - method: pip
27      path: .
28      extra_requirements:
29        - all
30