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