-
Notifications
You must be signed in to change notification settings - Fork 13
/
conf.py
53 lines (43 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
51
52
53
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",
'sphinx.ext.imgmath',
"nbsphinx",
"sphinx.ext.graphviz",
"sphinx.ext.inheritance_diagram",
"sphinx_autodoc_typehints"
]
graphviz_output_format = 'svg'
imgmath_image_format = 'svg'
imgmath_embed = True
inheritance_graph_attrs = dict(rankdir="TB", size='""')
autosectionlabel_prefix_document = True
napoleon_numpy_docstring = True
napoleon_include_init_with_doc = False
napoleon_include_private_with_doc = False
napoleon_include_special_with_doc = True
napoleon_use_admonition_for_examples = False
napoleon_use_admonition_for_notes = False
napoleon_use_admonition_for_references = False
napoleon_use_ivar = False
napoleon_use_param = True
napoleon_use_rtype = True
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "_templates"]
html_theme = "sphinx_rtd_theme"
html_theme_options = {
"collapse_navigation": False,
"sticky_navigation": False,
}
html_static_path = ["_static"]
autosummary_generate = True
latex_elements = {
'preamble': r'''
\usepackage{amsmath}
''',
}