1# .readthedocs.yaml 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# Set the version of Python and other tools you might need 9python: 10 version: "3" 11 install: 12 - method: pip 13 path: . 14 extra_requirements: 15 - m2r2 16 - sphinxcontrib-apidoc 17 18# Build documentation in the docs/ directory with Sphinx 19sphinx: 20 builder: html 21 configuration: docs/source/conf.py 22