2020-04-20 13:34:51 -04:00
|
|
|
# .readthedocs.yml
|
|
|
|
# Read the Docs configuration file
|
|
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
|
|
|
|
# Required
|
|
|
|
version: 2
|
2018-10-16 18:48:20 -04:00
|
|
|
|
|
|
|
build:
|
2023-03-21 18:00:12 +00:00
|
|
|
os: ubuntu-22.04
|
|
|
|
tools:
|
|
|
|
python: "3.10"
|
2018-10-16 18:48:20 -04:00
|
|
|
|
2020-04-20 13:34:51 -04:00
|
|
|
# Build documentation in the docs/ directory with Sphinx
|
|
|
|
sphinx:
|
|
|
|
configuration: Doc/source/conf.py
|
|
|
|
fail_on_warning: false
|
|
|
|
|
|
|
|
# Optionally build your docs in additional formats such as PDF and ePub
|
2020-04-21 13:47:57 -04:00
|
|
|
formats:
|
|
|
|
- htmlzip
|
|
|
|
- epub
|
2020-04-20 13:34:51 -04:00
|
|
|
|
|
|
|
# Optionally set the version of Python and requirements required to build your docs
|
2018-10-16 18:48:20 -04:00
|
|
|
python:
|
2020-04-20 13:34:51 -04:00
|
|
|
install:
|
|
|
|
- requirements: Doc/docs-requirements.txt
|
|
|
|
- method: pip
|
2020-04-20 19:07:10 -04:00
|
|
|
path: .
|
|
|
|
extra_requirements:
|
|
|
|
- all
|