2021-03-14 16:46:37 +01:00
|
|
|
# .readthedocs.yaml
|
|
|
|
# Read the Docs configuration file
|
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
2017-07-22 13:13:49 +02:00
|
|
|
|
2021-03-14 16:46:37 +01:00
|
|
|
# Required
|
|
|
|
version: 2
|
|
|
|
|
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
|
|
sphinx:
|
|
|
|
configuration: docs/source/conf.py
|
|
|
|
|
|
|
|
# Optionally build your docs in additional formats such as PDF
|
2017-07-22 13:13:49 +02:00
|
|
|
formats:
|
2021-03-14 16:46:37 +01:00
|
|
|
- pdf
|
2017-07-22 13:13:49 +02:00
|
|
|
|
2021-03-14 16:46:37 +01:00
|
|
|
# Optionally set the version of Python and requirements required to build your docs
|
2017-07-23 23:05:40 +02:00
|
|
|
python:
|
2018-05-03 15:34:50 +02:00
|
|
|
version: 3
|
2021-03-14 16:46:37 +01:00
|
|
|
install:
|
|
|
|
- method: pip
|
|
|
|
path: .
|
|
|
|
- requirements: docs/requirements-docs.txt
|