forked from privacyidea/privacyidea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.readthedocs.yaml
31 lines (26 loc) · 887 Bytes
/
.readthedocs.yaml
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
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build html documentation in the doc/ directory with Sphinx
sphinx:
builder: html
configuration: doc/conf.py
# Build HTML, PDF and ePub
formats: all
# Use Python 2 to create the virtual environment, install privacyIDEA using setuptools, along with dependencies for the
# documentation building process. Also allow access to python packages that are globally installed by default, even if
# they are not explicitly listed.
python:
version: 3.6
install:
- requirements: doc/requirements.txt
- method: pip
path: .
system_packages: false
# This is not currently needed, it is included so documentation will not break, if functionality is moved into
# submodules.
submodules:
include: all
recursive: true