-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.readthedocs.yml
More file actions
66 lines (51 loc) · 1.39 KB
/
.readthedocs.yml
File metadata and controls
66 lines (51 loc) · 1.39 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.12"
# Build documentation in the "docs" directory with Sphinx
sphinx:
configuration: docs/conf.py
fail_on_warning: true
# Optionally build your docs in additional formats such as PDF and ePub
formats:
- pdf
- epub
# Optionally set the version of Python and requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
- docs
# Optionally build documentation from subdirectory
doc_path: docs
# Optionally include or exclude patterns
# exclude_patterns: []
# Optionally include additional paths
git:
submodules: include
submodules_recursive: true
depth: 50
# Optionally set the default branch
default_branch: main
# Optionally set the language of your project
language: en
# Optionally set the conda environment to use
# conda:
# environment: environment.yml
# Optionally specify the requirements file
# requirements_file: requirements.txt
# Optionally include additional build steps
# build:
# image: latest
# Optionally specify the mkdocs configuration
# mkdocs:
# configuration: mkdocs.yml
# fail_on_warning: true