Fix copy-paste bug
[osm/N2VC.git] / docs / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # libjuju documentation build configuration file, created by
4 # sphinx-quickstart on Thu May 19 11:21:38 2016.
5 #
6 # This file is execfile()d with the current directory set to its
7 # containing dir.
8 #
9 # Note that not all possible configuration values are present in this
10 # autogenerated file.
11 #
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
14
15 import sys
16 import os
17
18 # If extensions (or modules to document with autodoc) are in another directory,
19 # add these directories to sys.path here. If the directory is relative to the
20 # documentation root, use os.path.abspath to make it absolute, like shown here.
21 sys.path.insert(0, os.path.abspath('..'))
22
23 # -- General configuration ------------------------------------------------
24
25 # If your documentation needs a minimal Sphinx version, state it here.
26 #needs_sphinx = '1.0'
27
28 # Add any Sphinx extension module names here, as strings. They can be
29 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
30 # ones.
31 extensions = [
32 'sphinx.ext.autodoc',
33 'sphinx.ext.todo',
34 'sphinx.ext.viewcode',
35 ]
36
37 # Add any paths that contain templates here, relative to this directory.
38 templates_path = ['_templates']
39
40 # The suffix(es) of source filenames.
41 # You can specify multiple suffix as a list of string:
42 # source_suffix = ['.rst', '.md']
43 source_suffix = '.rst'
44
45 # The encoding of source files.
46 #source_encoding = 'utf-8-sig'
47
48 # The master toctree document.
49 master_doc = 'index'
50
51 # General information about the project.
52 project = u'libjuju'
53 copyright = u'2016, Canonical'
54 author = u'Canonical'
55
56 # The version info for the project you're documenting, acts as replacement for
57 # |version| and |release|, also used in various other places throughout the
58 # built documents.
59 #
60 # The short X.Y version.
61 version = u'0.0.0'
62 # The full version, including alpha/beta/rc tags.
63 release = u'0.0.0'
64
65 # The language for content autogenerated by Sphinx. Refer to documentation
66 # for a list of supported languages.
67 #
68 # This is also used if you do content translation via gettext catalogs.
69 # Usually you set "language" from the command line for these cases.
70 language = None
71
72 # There are two options for replacing |today|: either, you set today to some
73 # non-false value, then it is used:
74 #today = ''
75 # Else, today_fmt is used as the format for a strftime call.
76 #today_fmt = '%B %d, %Y'
77
78 # List of patterns, relative to source directory, that match files and
79 # directories to ignore when looking for source files.
80 # This patterns also effect to html_static_path and html_extra_path
81 exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
82
83 # The reST default role (used for this markup: `text`) to use for all
84 # documents.
85 #default_role = None
86
87 # If true, '()' will be appended to :func: etc. cross-reference text.
88 #add_function_parentheses = True
89
90 # If true, the current module name will be prepended to all description
91 # unit titles (such as .. function::).
92 #add_module_names = True
93
94 # If true, sectionauthor and moduleauthor directives will be shown in the
95 # output. They are ignored by default.
96 #show_authors = False
97
98 # The name of the Pygments (syntax highlighting) style to use.
99 pygments_style = 'sphinx'
100
101 # A list of ignored prefixes for module index sorting.
102 #modindex_common_prefix = []
103
104 # If true, keep warnings as "system message" paragraphs in the built documents.
105 #keep_warnings = False
106
107 # If true, `todo` and `todoList` produce output, else they produce nothing.
108 todo_include_todos = True
109
110
111 # -- Options for HTML output ----------------------------------------------
112
113 # The theme to use for HTML and HTML Help pages. See the documentation for
114 # a list of builtin themes.
115 html_theme = 'alabaster'
116
117 # Theme options are theme-specific and customize the look and feel of a theme
118 # further. For a list of options available for each theme, see the
119 # documentation.
120 #html_theme_options = {}
121
122 # Add any paths that contain custom themes here, relative to this directory.
123 #html_theme_path = []
124
125 # The name for this set of Sphinx documents.
126 # "<project> v<release> documentation" by default.
127 #html_title = u'libjuju v0.0.0'
128
129 # A shorter title for the navigation bar. Default is the same as html_title.
130 #html_short_title = None
131
132 # The name of an image file (relative to this directory) to place at the top
133 # of the sidebar.
134 #html_logo = None
135
136 # The name of an image file (relative to this directory) to use as a favicon of
137 # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
138 # pixels large.
139 #html_favicon = None
140
141 # Add any paths that contain custom static files (such as style sheets) here,
142 # relative to this directory. They are copied after the builtin static files,
143 # so a file named "default.css" will overwrite the builtin "default.css".
144 html_static_path = ['_static']
145
146 # Add any extra paths that contain custom files (such as robots.txt or
147 # .htaccess) here, relative to this directory. These files are copied
148 # directly to the root of the documentation.
149 #html_extra_path = []
150
151 # If not None, a 'Last updated on:' timestamp is inserted at every page
152 # bottom, using the given strftime format.
153 # The empty string is equivalent to '%b %d, %Y'.
154 #html_last_updated_fmt = None
155
156 # If true, SmartyPants will be used to convert quotes and dashes to
157 # typographically correct entities.
158 #html_use_smartypants = True
159
160 # Custom sidebar templates, maps document names to template names.
161 #html_sidebars = {}
162
163 # Additional templates that should be rendered to pages, maps page names to
164 # template names.
165 #html_additional_pages = {}
166
167 # If false, no module index is generated.
168 #html_domain_indices = True
169
170 # If false, no index is generated.
171 #html_use_index = True
172
173 # If true, the index is split into individual pages for each letter.
174 #html_split_index = False
175
176 # If true, links to the reST sources are added to the pages.
177 #html_show_sourcelink = True
178
179 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
180 #html_show_sphinx = True
181
182 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
183 #html_show_copyright = True
184
185 # If true, an OpenSearch description file will be output, and all pages will
186 # contain a <link> tag referring to it. The value of this option must be the
187 # base URL from which the finished HTML is served.
188 #html_use_opensearch = ''
189
190 # This is the file name suffix for HTML files (e.g. ".xhtml").
191 #html_file_suffix = None
192
193 # Language to be used for generating the HTML full-text search index.
194 # Sphinx supports the following languages:
195 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
196 # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr', 'zh'
197 #html_search_language = 'en'
198
199 # A dictionary with options for the search language support, empty by default.
200 # 'ja' uses this config value.
201 # 'zh' user can custom change `jieba` dictionary path.
202 #html_search_options = {'type': 'default'}
203
204 # The name of a javascript file (relative to the configuration directory) that
205 # implements a search results scorer. If empty, the default will be used.
206 #html_search_scorer = 'scorer.js'
207
208 # Output file base name for HTML help builder.
209 htmlhelp_basename = 'libjujudoc'
210
211 # -- Options for LaTeX output ---------------------------------------------
212
213 latex_elements = {
214 # The paper size ('letterpaper' or 'a4paper').
215 #'papersize': 'letterpaper',
216
217 # The font size ('10pt', '11pt' or '12pt').
218 #'pointsize': '10pt',
219
220 # Additional stuff for the LaTeX preamble.
221 #'preamble': '',
222
223 # Latex figure (float) alignment
224 #'figure_align': 'htbp',
225 }
226
227 # Grouping the document tree into LaTeX files. List of tuples
228 # (source start file, target name, title,
229 # author, documentclass [howto, manual, or own class]).
230 latex_documents = [
231 (master_doc, 'libjuju.tex', u'libjuju Documentation',
232 u'Canonical', 'manual'),
233 ]
234
235 # The name of an image file (relative to this directory) to place at the top of
236 # the title page.
237 #latex_logo = None
238
239 # For "manual" documents, if this is true, then toplevel headings are parts,
240 # not chapters.
241 #latex_use_parts = False
242
243 # If true, show page references after internal links.
244 #latex_show_pagerefs = False
245
246 # If true, show URL addresses after external links.
247 #latex_show_urls = False
248
249 # Documents to append as an appendix to all manuals.
250 #latex_appendices = []
251
252 # If false, no module index is generated.
253 #latex_domain_indices = True
254
255
256 # -- Options for manual page output ---------------------------------------
257
258 # One entry per manual page. List of tuples
259 # (source start file, name, description, authors, manual section).
260 man_pages = [
261 (master_doc, 'libjuju', u'libjuju Documentation',
262 [author], 1)
263 ]
264
265 # If true, show URL addresses after external links.
266 #man_show_urls = False
267
268
269 # -- Options for Texinfo output -------------------------------------------
270
271 # Grouping the document tree into Texinfo files. List of tuples
272 # (source start file, target name, title, author,
273 # dir menu entry, description, category)
274 texinfo_documents = [
275 (master_doc, 'libjuju', u'libjuju Documentation',
276 author, 'libjuju', 'One line description of project.',
277 'Miscellaneous'),
278 ]
279
280 # Documents to append as an appendix to all manuals.
281 #texinfo_appendices = []
282
283 # If false, no module index is generated.
284 #texinfo_domain_indices = True
285
286 # How to display URL addresses: 'footnote', 'no', or 'inline'.
287 #texinfo_show_urls = 'footnote'
288
289 # If true, do not generate a @detailmenu in the "Top" node's menu.
290 #texinfo_no_detailmenu = False