Merge "VNFRQTS - Fixing Scope in Chapter 3"
[vnfrqts/requirements.git] / conf.py
1 ##############################################################################
2 # Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
3 # ===================================================================
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #############################################################################
16
17
18 # -*- coding: utf-8 -*-
19 #
20 # ONAP documentation build configuration file, created by
21 # sphinx-quickstart on Wed Jul 19 16:25:31 2017.
22 #
23 # This file is execfile()d with the current directory set to its
24 # containing dir.
25 #
26 # Note that not all possible configuration values are present in this
27 # autogenerated file.
28 #
29 # All configuration values have a default; values that are commented out
30 # serve to show the default.
31
32 import sys
33 import os
34 import shlex
35
36 # If extensions (or modules to document with autodoc) are in another directory,
37 # add these directories to sys.path here. If the directory is relative to the
38 # documentation root, use os.path.abspath to make it absolute, like shown here.
39 #sys.path.insert(0, os.path.abspath('.'))
40
41 # -- General configuration ------------------------------------------------
42
43 # If your documentation needs a minimal Sphinx version, state it here.
44 #needs_sphinx = '1.0'
45
46 # Add any Sphinx extension module names here, as strings. They can be
47 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
48 # ones.
49 extensions = [
50     'sphinx.ext.autodoc',
51     'sphinx.ext.doctest',
52     'sphinx.ext.graphviz',
53     'sphinx.ext.todo',
54     'sphinx.ext.pngmath',
55     'sphinx.ext.viewcode',
56 ]
57
58 # Add any paths that contain templates here, relative to this directory.
59 templates_path = ['_templates']
60
61 # The suffix(es) of source filenames.
62 # You can specify multiple suffix as a list of string:
63 # source_suffix = ['.rst', '.md']
64 source_suffix = '.rst'
65
66 # The encoding of source files.
67 #source_encoding = 'utf-8-sig'
68
69 # The master toctree document.
70 master_doc = 'index'
71
72 # General information about the project.
73 project = u'ONAP'
74 copyright = u'2017, ONAP Contributors'
75 author = u'ONAP Contributors'
76
77 # The version info for the project you're documenting, acts as replacement for
78 # |version| and |release|, also used in various other places throughout the
79 # built documents.
80 #
81 # The short X.Y version.
82 version = 'test'
83 # The full version, including alpha/beta/rc tags.
84 release = 'test'
85
86 # The language for content autogenerated by Sphinx. Refer to documentation
87 # for a list of supported languages.
88 #
89 # This is also used if you do content translation via gettext catalogs.
90 # Usually you set "language" from the command line for these cases.
91 language = None
92
93 # There are two options for replacing |today|: either, you set today to some
94 # non-false value, then it is used:
95 #today = ''
96 # Else, today_fmt is used as the format for a strftime call.
97 #today_fmt = '%B %d, %Y'
98
99 # List of patterns, relative to source directory, that match files and
100 # directories to ignore when looking for source files.
101 exclude_patterns = ['_build']
102
103 # The reST default role (used for this markup: `text`) to use for all
104 # documents.
105 #default_role = None
106
107 # If true, '()' will be appended to :func: etc. cross-reference text.
108 #add_function_parentheses = True
109
110 # If true, the current module name will be prepended to all description
111 # unit titles (such as .. function::).
112 #add_module_names = True
113
114 # If true, sectionauthor and moduleauthor directives will be shown in the
115 # output. They are ignored by default.
116 #show_authors = False
117
118 # The name of the Pygments (syntax highlighting) style to use.
119 pygments_style = 'sphinx'
120
121 # A list of ignored prefixes for module index sorting.
122 #modindex_common_prefix = []
123
124 # If true, keep warnings as "system message" paragraphs in the built documents.
125 #keep_warnings = False
126
127 # If true, `todo` and `todoList` produce output, else they produce nothing.
128 todo_include_todos = True
129
130
131 # -- Options for HTML output ----------------------------------------------
132
133 # The theme to use for HTML and HTML Help pages.  See the documentation for
134 # a list of builtin themes.
135 html_theme = 'classic'
136
137 # Theme options are theme-specific and customize the look and feel of a theme
138 # further.  For a list of options available for each theme, see the
139 # documentation.
140 #html_theme_options = {}
141
142 # Add any paths that contain custom themes here, relative to this directory.
143 #html_theme_path = []
144
145 # The name for this set of Sphinx documents.  If None, it defaults to
146 # "<project> v<release> documentation".
147 #html_title = None
148
149 # A shorter title for the navigation bar.  Default is the same as html_title.
150 #html_short_title = None
151
152 # The name of an image file (relative to this directory) to place at the top
153 # of the sidebar.
154 html_logo = '_static/logo_onap_2017.png'
155
156 # The name of an image file (within the static path) to use as favicon of the
157 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
158 # pixels large.
159 html_favicon = '_static/favicon.ico'
160
161 # Add any paths that contain custom static files (such as style sheets) here,
162 # relative to this directory. They are copied after the builtin static files,
163 # so a file named "default.css" will overwrite the builtin "default.css".
164 html_static_path = ['_static']
165
166 # Add any extra paths that contain custom files (such as robots.txt or
167 # .htaccess) here, relative to this directory. These files are copied
168 # directly to the root of the documentation.
169 #html_extra_path = []
170
171 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
172 # using the given strftime format.
173 #html_last_updated_fmt = '%b %d, %Y'
174
175 # If true, SmartyPants will be used to convert quotes and dashes to
176 # typographically correct entities.
177 #html_use_smartypants = True
178
179 # Custom sidebar templates, maps document names to template names.
180 #html_sidebars = {}
181
182 # Additional templates that should be rendered to pages, maps page names to
183 # template names.
184 #html_additional_pages = {}
185
186 # If false, no module index is generated.
187 #html_domain_indices = True
188
189 # If false, no index is generated.
190 #html_use_index = True
191
192 # If true, the index is split into individual pages for each letter.
193 #html_split_index = False
194
195 # If true, links to the reST sources are added to the pages.
196 #html_show_sourcelink = True
197
198 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
199 #html_show_sphinx = True
200
201 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
202 #html_show_copyright = True
203
204 # If true, an OpenSearch description file will be output, and all pages will
205 # contain a <link> tag referring to it.  The value of this option must be the
206 # base URL from which the finished HTML is served.
207 #html_use_opensearch = ''
208
209 # This is the file name suffix for HTML files (e.g. ".xhtml").
210 #html_file_suffix = None
211
212 # Language to be used for generating the HTML full-text search index.
213 # Sphinx supports the following languages:
214 #   'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
215 #   'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
216 #html_search_language = 'en'
217
218 # A dictionary with options for the search language support, empty by default.
219 # Now only 'ja' uses this config value
220 #html_search_options = {'type': 'default'}
221
222 # The name of a javascript file (relative to the configuration directory) that
223 # implements a search results scorer. If empty, the default will be used.
224 #html_search_scorer = 'scorer.js'
225
226 # Output file base name for HTML help builder.
227 htmlhelp_basename = 'ONAPdoc'
228
229 # -- Options for LaTeX output ---------------------------------------------
230
231 latex_elements = {
232 # The paper size ('letterpaper' or 'a4paper').
233 #'papersize': 'letterpaper',
234
235 # The font size ('10pt', '11pt' or '12pt').
236 #'pointsize': '10pt',
237
238 # Additional stuff for the LaTeX preamble.
239 #'preamble': '',
240
241 # Latex figure (float) alignment
242 #'figure_align': 'htbp',
243 }
244
245 # Grouping the document tree into LaTeX files. List of tuples
246 # (source start file, target name, title,
247 #  author, documentclass [howto, manual, or own class]).
248 latex_documents = [
249   (master_doc, 'ONAP.tex', u'ONAP Documentation',
250    u'ONAP Contributors', 'manual'),
251 ]
252
253 # The name of an image file (relative to this directory) to place at the top of
254 # the title page.
255 #latex_logo = None
256
257 # For "manual" documents, if this is true, then toplevel headings are parts,
258 # not chapters.
259 #latex_use_parts = False
260
261 # If true, show page references after internal links.
262 #latex_show_pagerefs = False
263
264 # If true, show URL addresses after external links.
265 #latex_show_urls = False
266
267 # Documents to append as an appendix to all manuals.
268 #latex_appendices = []
269
270 # If false, no module index is generated.
271 #latex_domain_indices = True
272
273
274 # -- Options for manual page output ---------------------------------------
275
276 # One entry per manual page. List of tuples
277 # (source start file, name, description, authors, manual section).
278 man_pages = [
279     (master_doc, 'onap', u'ONAP Documentation',
280      [author], 1)
281 ]
282
283 # If true, show URL addresses after external links.
284 #man_show_urls = False
285
286
287 # -- Options for Texinfo output -------------------------------------------
288
289 # Grouping the document tree into Texinfo files. List of tuples
290 # (source start file, target name, title, author,
291 #  dir menu entry, description, category)
292 texinfo_documents = [
293   (master_doc, 'ONAP', u'ONAP Documentation',
294    author, 'ONAP', 'Open Network Automation Platform',
295    'Platform'),
296 ]
297
298 # Documents to append as an appendix to all manuals.
299 #texinfo_appendices = []
300
301 # If false, no module index is generated.
302 #texinfo_domain_indices = True
303
304 # How to display URL addresses: 'footnote', 'no', or 'inline'.
305 #texinfo_show_urls = 'footnote'
306
307 # If true, do not generate a @detailmenu in the "Top" node's menu.
308 #texinfo_no_detailmenu = False
309
310
311 # -- Options for Epub output ----------------------------------------------
312
313 # Bibliographic Dublin Core info.
314 epub_title = project
315 epub_author = author
316 epub_publisher = author
317 epub_copyright = copyright
318
319 # The basename for the epub file. It defaults to the project name.
320 #epub_basename = project
321
322 # The HTML theme for the epub output. Since the default themes are not optimized
323 # for small screen space, using the same theme for HTML and epub output is
324 # usually not wise. This defaults to 'epub', a theme designed to save visual
325 # space.
326 #epub_theme = 'epub'
327
328 # The language of the text. It defaults to the language option
329 # or 'en' if the language is not set.
330 #epub_language = ''
331
332 # The scheme of the identifier. Typical schemes are ISBN or URL.
333 #epub_scheme = ''
334
335 # The unique identifier of the text. This can be a ISBN number
336 # or the project homepage.
337 #epub_identifier = ''
338
339 # A unique identification for the text.
340 #epub_uid = ''
341
342 # A tuple containing the cover image and cover page html template filenames.
343 #epub_cover = ()
344
345 # A sequence of (type, uri, title) tuples for the guide element of content.opf.
346 #epub_guide = ()
347
348 # HTML files that should be inserted before the pages created by sphinx.
349 # The format is a list of tuples containing the path and title.
350 #epub_pre_files = []
351
352 # HTML files shat should be inserted after the pages created by sphinx.
353 # The format is a list of tuples containing the path and title.
354 #epub_post_files = []
355
356 # A list of files that should not be packed into the epub file.
357 epub_exclude_files = ['search.html']
358
359 # The depth of the table of contents in toc.ncx.
360 #epub_tocdepth = 3
361
362 # Allow duplicate toc entries.
363 #epub_tocdup = True
364
365 # Choose between 'default' and 'includehidden'.
366 #epub_tocscope = 'default'
367
368 # Fix unsupported image types using the Pillow.
369 #epub_fix_images = False
370
371 # Scale large images.
372 #epub_max_image_width = 0
373
374 # How to display URL addresses: 'footnote', 'no', or 'inline'.
375 #epub_show_urls = 'inline'
376
377 # If false, no index is generated.
378 #epub_use_index = True