-
Notifications
You must be signed in to change notification settings - Fork 12
/
.readthedocs.yml
43 lines (38 loc) · 1.36 KB
/
.readthedocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the "docs/" directory with Sphinx
sphinx:
configuration: docs/source/conf.py
# Optionally build your docs in additional formats such as PDF and ePub
# formats:
# - pdf
# - epub
# Optional but recommended, declare the Python requirements required
# to build your documentation
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
# Specify dependencies to be installed
# Define the system dependencies
build:
os: "ubuntu-20.04"
tools:
python: "3.9"
apt_packages:
- pandoc # Specify pandoc to be installed via apt-get
- graphviz # Specify graphviz to be installed via apt-get
jobs:
pre_build:
# Generate the Sphinx configuration for this Jupyter Book so it builds.
- "jupyter-book config sphinx docs/source/"
# Create font cache ahead of jupyter book
- 'python -c "import matplotlib.pyplot as plt"'
# Get the API documentation dynamically
- "sphinx-apidoc -f -o docs/source/ src/caustics/"
python:
install:
- requirements: docs/requirements.txt # Path to your requirements.txt file
- requirements: requirements.txt # Path to your requirements.txt file
- method: pip
path: . # Install the package itself