-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathconf.py
More file actions
78 lines (61 loc) · 1.86 KB
/
Copy pathconf.py
File metadata and controls
78 lines (61 loc) · 1.86 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sphinx_rtd_theme
import os
import sys
sys.path.insert(0, '../..')
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.todo',
'sphinx.ext.viewcode',
]
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = 'solidfire-sdk-python'
copyright = '2014-2017, NetApp, Inc. All Rights Reserved.'
author = 'Adam Haid'
version = '1.6.0.126'
release = '1.6.0.126'
language = 'en'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
todo_include_todos = True
autoclass_content = 'both'
seen_element = False
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_theme_options = {}
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
html_title = 'SolidFire Python SDK v' + release
# A shorter title for the navigation bar. Default is the same as html_title.
html_short_title = 'SF-Python SDK v' + release
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = '_static/PythonSDK.png'
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
html_favicon = '_static/favicon.ico'
html_static_path = ['_static']
htmlhelp_basename = 'solidfiredoc'
latex_elements = {}
latex_documents = [
(master_doc, 'SolidFire.tex', 'SolidFire Documentation',
'Author', 'manual'),
]
man_pages = [
(master_doc, 'SolidFire', 'SolidFire Documentation',
[author], 1)
]
texinfo_documents = [
(master_doc, 'SolidFire', 'Python SDK Documentation',
author, 'SolidFire', 'Python SDK',
'Miscellaneous'),
]
epub_title = project
epub_author = author
epub_publisher = author
epub_copyright = copyright
epub_exclude_files = ['search.html']