-
Notifications
You must be signed in to change notification settings - Fork 4
/
.readthedocs.yml
79 lines (69 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
build:
os: "ubuntu-20.04"
tools:
python: "3.9"
jobs:
pre_build:
- pip install -e "idmtools_core[test]"
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
fail_on_warning: true
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF
formats:
- htmlzip
# Optionally set the version of Python and requirements required to build your docs
python:
install:
- requirements: dev_scripts/package_requirements.txt
- requirements: docs/requirements.txt
- method: pip
path: idmtools_core
extra_requirements:
- test
- method: pip
path: idmtools_cli
extra_requirements:
- test
- method: pip
path: idmtools_platform_comps
extra_requirements:
- test
- method: pip
path: idmtools_models
extra_requirements:
- test
- method: pip
path: idmtools_platform_slurm
extra_requirements:
- test
- method: pip
path: idmtools_test
extra_requirements:
- test
- method: pip
path: idmtools_slurm_utils
extra_requirements:
- test
- method: pip
path: idmtools_platform_general
extra_requirements:
- test
- method: pip
path: idmtools_platform_container
extra_requirements:
- test
# Optionally rank topics in search results, between -10 (lower) and 10 (higher).
# 0 is normal rank, not no rank
search:
ranking:
installation.html: 3
reference.html: 2