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