-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconf.py
40 lines (38 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
project = "redisai-py"
copyright = "2020, Redis"
author = "Redis"
release = "1.0.2"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.extlinks",
"sphinx.ext.napoleon",
"sphinx.ext.todo",
"sphinx.ext.intersphinx",
"sphinx_rtd_theme",
'sphinx_search.extension', # search tools
'sphinx.ext.autodoc',
]
pygments_style = "sphinx"
autoapi_type = 'python'
templates_path = ["_templates"]
source_suffix = ".rst"
master_doc = "index"
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "sphinx_rtd_theme"
html_logo = 'images/logo.png'
html_use_smartypants = True
html_last_updated_fmt = "%b %d, %Y"
html_split_index = False
html_static_path = ['_static']
html_sidebars = {
"**": ["searchbox.html", "globaltoc.html", "sourcelink.html"],
}
html_short_title = "%s-%s" % (project, release)
napoleon_use_ivar = True
napoleon_use_rtype = True
napoleon_use_param = True
napoleon_include_init_with_doc = True
add_module_names = False
doctest_test_doctest_blocks = None
autoclass_content = "class"