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