|
a |
|
b/.readthedocs.yml |
|
|
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 |
|
|
6 |
version: 2 |
|
|
7 |
|
|
|
8 |
# Set the version of Python and other tools you might need |
|
|
9 |
build: |
|
|
10 |
os: ubuntu-22.04 # ubuntu-lts-latest |
|
|
11 |
tools: |
|
|
12 |
python: "3.9" |
|
|
13 |
apt_packages: |
|
|
14 |
- texlive-full |
|
|
15 |
- build-essential |
|
|
16 |
- ffmpeg |
|
|
17 |
- libsm6 |
|
|
18 |
- libxext6 |
|
|
19 |
- libsndfile1 |
|
|
20 |
|
|
|
21 |
# Build documentation in the docs/ directory with Sphinx |
|
|
22 |
sphinx: |
|
|
23 |
builder: html |
|
|
24 |
configuration: docs/source/conf.py |
|
|
25 |
|
|
|
26 |
# If using Sphinx, optionally build your docs in additional formats such as PDF |
|
|
27 |
# formats: |
|
|
28 |
# - pdf |
|
|
29 |
# - epub |
|
|
30 |
|
|
|
31 |
# Optionally declare the Python requirements required to build your docs |
|
|
32 |
python: |
|
|
33 |
install: |
|
|
34 |
- requirements: requirements.txt |
|
|
35 |
- requirements: docs/requirements.txt |
|
|
36 |
- method: pip |
|
|
37 |
path: . |
|
|
38 |
extra_requirements: |
|
|
39 |
- docs |