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