OpenFPGA/.readthedocs.yml

28 lines
645 B
YAML
Raw Permalink Normal View History

2020-11-12 20:43:43 -06:00
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required configuration file version
version: 2
# Specify docker image for building the doc
build:
os: ubuntu-22.04
tools:
python: "3.7"
2020-11-12 20:43:43 -06:00
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: dirhtml
configuration: docs/source/conf.py
# Optionally build your docs in additional formats such as PDF and ePub
2024-08-03 02:26:24 -05:00
formats:
- pdf
- epub
2020-11-12 20:43:43 -06:00
# Optionally set the version of Python and requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt