|
a |
|
b/.readthedocs.yaml |
|
|
1 |
# File: .readthedocs.yaml (see example: https://docs.readthedocs.io/en/stable/config-file/v2.html) |
|
|
2 |
|
|
|
3 |
# Required (see https://blog.readthedocs.com/migrate-configuration-v2/) |
|
|
4 |
version: 2 |
|
|
5 |
|
|
|
6 |
# Set the OS, Python version and other tools you might need |
|
|
7 |
build: |
|
|
8 |
os: ubuntu-22.04 |
|
|
9 |
tools: |
|
|
10 |
python: "3.8" |
|
|
11 |
|
|
|
12 |
# Build documentation in the "docs/" directory with Sphinx |
|
|
13 |
sphinx: |
|
|
14 |
configuration: docs/source/conf.py |
|
|
15 |
|
|
|
16 |
# Optional but recommended, declare the Python requirements required |
|
|
17 |
# to build your documentation |
|
|
18 |
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html |
|
|
19 |
python: |
|
|
20 |
install: |
|
|
21 |
- requirements: docs/requirements.txt |
|
|
22 |
|