Sunshine/.readthedocs.yaml

35 lines
667 B
YAML
Raw Normal View History

2022-08-07 20:26:40 -04:00
---
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python
build:
os: ubuntu-20.04
tools:
2022-10-29 22:14:16 -04:00
python: "3.10"
apt_packages:
- graphviz
2022-04-28 18:06:55 -04:00
## Include the submodules, required for cmake
2022-08-07 20:26:40 -04:00
# submodules:
# include: all
# recursive: true
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
fail_on_warning: true
# Using Sphinx, build docs in additional formats
formats: all
python:
install:
2022-10-29 22:14:16 -04:00
- requirements: ./docs/requirements.txt
system_packages: true