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
8# Build documentation in the docs/ directory with Sphinx
9sphinx:
10  builder: html
11  configuration: docs/conf.py
12
13# Build documentation with MkDocs
14#mkdocs:
15#  configuration: mkdocs.yml
16
17# Optionally build your docs in additional formats such as PDF and ePub
18formats: all
19
20# Optionally set the version of Python and requirements required to build your docs
21python:
22  version: 3.7
23  install:
24    - requirements: docs/requirements.txt
25
26