-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathconf.py
38 lines (30 loc) · 1.01 KB
/
conf.py
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
"""Sphinx configurations for pipeline_lsst_io.
These configurations are centrally defined in Documenteer
(https://github.com/lsst-sqre/documenteer). Documentation:
https://documenteer.lsst.io/pipelines/configuration.html
"""
from documenteer.conf.pipelines import *
project = "LSST Science Pipelines"
html_theme_options["logotext"] = project
html_title = project
html_short_title = project
# Patch EUPS tag substitutions
rst_epilog = """
.. |eups-tag| replace:: v28_0_1
.. |eups-tag-mono| replace:: ``v28_0_1``
.. |eups-tag-bold| replace:: **v28_0_1**
"""
# Patch EUPS and Git tag context for Jinja templating
jinja_contexts = {
"default": {
"release_eups_tag": "v28_0_1",
"release_git_ref": "28.0.1",
"version": "v28_0_1",
"release": "v28_0_1",
"scipipe_conda_ref": "28.0.1",
"pipelines_demo_ref": "28.0.1",
}
}
jira_uri_template = "https://ls.st/{ticket}"
# needed for pipe_base
intersphinx_mapping['networkx'] = ('https://networkx.org/documentation/stable/', None)