-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathconf.py
executable file
·41 lines (31 loc) · 1.04 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
39
40
41
import os
import sys
sys.path.insert(0, os.path.abspath(".."))
import stan
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
"sphinx.ext.viewcode",
]
source_suffix = ".rst"
master_doc = "index"
project = "pystan"
copyright = "2019, pystan Developers"
intersphinx_mapping = {
"python": ("http://python.readthedocs.io/en/latest/", None),
}
try:
version = release = stan.__version__
except AttributeError:
# install the package to make `stan.__version__` available
version = release = "unknown-dev"
################################################################################
# theme configuration
################################################################################
# on_rtd is whether we are on readthedocs.org
on_rtd = os.environ.get("READTHEDOCS", None) == "True"
if not on_rtd: # only import and set the theme if we're building docs locally
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]