forked from bamsumit/lava-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
34 lines (26 loc) · 778 Bytes
/
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
import os
import sys
import sphinx_rtd_theme
sys.path.insert(0, os.path.abspath("../lava/lava"))
sys.path.insert(0, os.path.abspath("../lava-dl"))
sys.path.insert(0, os.path.abspath("../lava-dnf"))
sys.path.insert(0, os.path.abspath("../lava-optimization"))
project = "Lava"
copyright = "2021, Intel Corporation"
author = "Intel Corporation"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.autosectionlabel",
"sphinx.ext.napoleon",
"sphinx_rtd_theme"
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "sphinx_rtd_theme"
html_theme_options = {
"collapse_navigation": False,
"sticky_navigation": False,
}
html_static_path = ["_static"]
autosummary_generate = True