|
1 |
| -project = 'redisai-py' |
2 |
| -copyright = '2020, RedisLabs' |
3 |
| -author = 'RedisLabs' |
4 |
| -release = '1.0.1' |
5 |
| -extensions = ['sphinx.ext.autodoc', |
6 |
| - 'sphinx.ext.autosummary', |
7 |
| - 'sphinx.ext.extlinks', |
8 |
| - 'sphinx.ext.napoleon', |
9 |
| - 'sphinx.ext.todo', |
10 |
| - 'sphinx.ext.intersphinx', |
11 |
| - "sphinx_rtd_theme"] |
12 |
| -templates_path = ['_templates'] |
13 |
| -source_suffix = '.rst' |
14 |
| -master_doc = 'index' |
15 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
16 |
| -html_theme = 'sphinx_rtd_theme' |
| 1 | +project = "redisai-py" |
| 2 | +copyright = "2020, RedisLabs" |
| 3 | +author = "RedisLabs" |
| 4 | +release = "1.0.2" |
| 5 | +extensions = [ |
| 6 | + "sphinx.ext.autodoc", |
| 7 | + "sphinx.ext.autosummary", |
| 8 | + "sphinx.ext.extlinks", |
| 9 | + "sphinx.ext.napoleon", |
| 10 | + "sphinx.ext.todo", |
| 11 | + "sphinx.ext.intersphinx", |
| 12 | + "sphinx_rtd_theme", |
| 13 | +] |
| 14 | +templates_path = ["_templates"] |
| 15 | +source_suffix = ".rst" |
| 16 | +master_doc = "index" |
| 17 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
| 18 | +html_theme = "sphinx_rtd_theme" |
17 | 19 | html_use_smartypants = True
|
18 |
| -html_last_updated_fmt = '%b %d, %Y' |
| 20 | +html_last_updated_fmt = "%b %d, %Y" |
19 | 21 | html_split_index = False
|
20 | 22 | html_sidebars = {
|
21 |
| - '**': ['searchbox.html', 'globaltoc.html', 'sourcelink.html'], |
| 23 | + "**": ["searchbox.html", "globaltoc.html", "sourcelink.html"], |
22 | 24 | }
|
23 |
| -html_short_title = '%s-%s' % (project, release) |
| 25 | +html_short_title = "%s-%s" % (project, release) |
24 | 26 |
|
25 | 27 | napoleon_use_ivar = True
|
26 | 28 | napoleon_use_rtype = True
|
|
29 | 31 |
|
30 | 32 | add_module_names = False
|
31 | 33 | doctest_test_doctest_blocks = None
|
32 |
| -autoclass_content = 'class' |
| 34 | +autoclass_content = "class" |
0 commit comments