Path: blob/main/contrib/libcbor/doc/source/conf.py
39563 views
# -*- coding: utf-8 -*-1#2# libcbor documentation build configuration file, created by3# sphinx-quickstart on Sun Jun 8 13:27:19 2014.4#5# This file is execfile()d with the current directory set to its6# containing dir.7#8# Note that not all possible configuration values are present in this9# autogenerated file.10#11# All configuration values have a default; values that are commented out12# serve to show the default.1314import sys15import os1617# If extensions (or modules to document with autodoc) are in another directory,18# add these directories to sys.path here. If the directory is relative to the19# documentation root, use os.path.abspath to make it absolute, like shown here.20#sys.path.insert(0, os.path.abspath('.'))21sys.path.append(os.path.abspath(os.path.dirname(__file__)))2223# -- General configuration ------------------------------------------------2425# If your documentation needs a minimal Sphinx version, state it here.26#needs_sphinx = '1.0'2728# Add any Sphinx extension module names here, as strings. They can be29# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom30# ones.31extensions = [32'breathe',33'sphinx.ext.mathjax',34'sphinx.ext.autodoc',35'sphinx.ext.ifconfig',36'sphinx_rtd_theme'37]3839import subprocess, os4041# on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org42on_rtd = os.environ.get('READTHEDOCS', None) == 'True'43print(subprocess.check_output('cd ../..; mkdir doc/build; doxygen', shell=True))4445if on_rtd:46print(subprocess.check_output('cd ../..; mkdir doc/build; doxygen', shell=True))474849print(os.getcwd())50print(os.getcwd() + '/../build/doxygen/xml')5152breathe_projects = {53'libcbor': '../build/doxygen/xml'54}5556breathe_default_project = "libcbor"5758# Add any paths that contain templates here, relative to this directory.59templates_path = ['_templates']6061# The suffix of source filenames.62source_suffix = '.rst'6364# The encoding of source files.65#source_encoding = 'utf-8-sig'6667# The master toctree document.68master_doc = 'index'6970# General information about the project.71project = 'libcbor'72copyright = '2014 - 2020, Pavel Kalvoda'7374# The version info for the project you're documenting, acts as replacement for75# |version| and |release|, also used in various other places throughout the76# built documents.77#78# The short X.Y version.79version = '0.11'80release = '0.11.0'8182# The language for content autogenerated by Sphinx. Refer to documentation83# for a list of supported languages.84#language = None8586# There are two options for replacing |today|: either, you set today to some87# non-false value, then it is used:88#today = ''89# Else, today_fmt is used as the format for a strftime call.90#today_fmt = '%B %d, %Y'9192# List of patterns, relative to source directory, that match files and93# directories to ignore when looking for source files.94# https://github.com/michaeljones/breathe/issues/19795exclude_patterns = ['breathe/*']9697# The reST default role (used for this markup: `text`) to use for all98# documents.99breathe_domain_by_extension = {100"h" : "C",101}102#default_role = 'c:func'103primary_domain = "cpp"104105# If true, '()' will be appended to :func: etc. cross-reference text.106add_function_parentheses = True107108# If true, the current module name will be prepended to all description109# unit titles (such as .. function::).110#add_module_names = True111112# If true, sectionauthor and moduleauthor directives will be shown in the113# output. They are ignored by default.114#show_authors = False115116# The name of the Pygments (syntax highlighting) style to use.117pygments_style = 'sphinx'118119# A list of ignored prefixes for module index sorting.120#modindex_common_prefix = []121122# If true, keep warnings as "system message" paragraphs in the built documents.123#keep_warnings = False124125126# -- Options for HTML output ----------------------------------------------127128# The theme to use for HTML and HTML Help pages. See the documentation for129# a list of builtin themes.130html_theme = 'sphinx_rtd_theme'131132# Theme options are theme-specific and customize the look and feel of a theme133# further. For a list of options available for each theme, see the134# documentation.135#html_theme_options = {}136137# Add any paths that contain custom themes here, relative to this directory.138#html_theme_path = []139140# The name for this set of Sphinx documents. If None, it defaults to141# "<project> v<release> documentation".142#html_title = None143144# A shorter title for the navigation bar. Default is the same as html_title.145#html_short_title = None146147# The name of an image file (relative to this directory) to place at the top148# of the sidebar.149#html_logo = None150151# The name of an image file (within the static path) to use as favicon of the152# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32153# pixels large.154#html_favicon = None155156# Add any paths that contain custom static files (such as style sheets) here,157# relative to this directory. They are copied after the builtin static files,158# so a file named "default.css" will overwrite the builtin "default.css".159html_static_path = []160161# Add any extra paths that contain custom files (such as robots.txt or162# .htaccess) here, relative to this directory. These files are copied163# directly to the root of the documentation.164#html_extra_path = []165166# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,167# using the given strftime format.168#html_last_updated_fmt = '%b %d, %Y'169170# If true, SmartyPants will be used to convert quotes and dashes to171# typographically correct entities.172#html_use_smartypants = True173174# Custom sidebar templates, maps document names to template names.175#html_sidebars = {}176177# Additional templates that should be rendered to pages, maps page names to178# template names.179#html_additional_pages = {}180181# If false, no module index is generated.182#html_domain_indices = True183184# If false, no index is generated.185#html_use_index = True186187# If true, the index is split into individual pages for each letter.188#html_split_index = False189190# If true, links to the reST sources are added to the pages.191#html_show_sourcelink = True192193# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.194#html_show_sphinx = True195196# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.197#html_show_copyright = True198199# If true, an OpenSearch description file will be output, and all pages will200# contain a <link> tag referring to it. The value of this option must be the201# base URL from which the finished HTML is served.202#html_use_opensearch = ''203204# This is the file name suffix for HTML files (e.g. ".xhtml").205#html_file_suffix = None206207# Output file base name for HTML help builder.208htmlhelp_basename = 'libcbordoc'209210211# -- Options for LaTeX output ---------------------------------------------212213latex_elements = {214# The paper size ('letterpaper' or 'a4paper').215#'papersize': 'letterpaper',216217# The font size ('10pt', '11pt' or '12pt').218#'pointsize': '10pt',219220# Additional stuff for the LaTeX preamble.221#'preamble': '',222}223224# Grouping the document tree into LaTeX files. List of tuples225# (source start file, target name, title,226# author, documentclass [howto, manual, or own class]).227latex_documents = [228('index', 'libcbor.tex', 'libcbor Documentation',229'Pavel Kalvoda', 'manual'),230]231232# The name of an image file (relative to this directory) to place at the top of233# the title page.234#latex_logo = None235236# For "manual" documents, if this is true, then toplevel headings are parts,237# not chapters.238#latex_use_parts = False239240# If true, show page references after internal links.241#latex_show_pagerefs = False242243# If true, show URL addresses after external links.244#latex_show_urls = False245246# Documents to append as an appendix to all manuals.247#latex_appendices = []248249# If false, no module index is generated.250#latex_domain_indices = True251252253# -- Options for manual page output ---------------------------------------254255# One entry per manual page. List of tuples256# (source start file, name, description, authors, manual section).257man_pages = [258('index', 'libcbor', 'libcbor Documentation',259['Pavel Kalvoda'], 3)260]261262# If true, show URL addresses after external links.263#man_show_urls = False264265266# -- Options for Texinfo output -------------------------------------------267268# Grouping the document tree into Texinfo files. List of tuples269# (source start file, target name, title, author,270# dir menu entry, description, category)271texinfo_documents = [272('index', 'libcbor', 'libcbor Documentation',273'Pavel Kalvoda', 'libcbor', 'C library for parsing and generating CBOR.',274'Miscellaneous'),275]276277# Documents to append as an appendix to all manuals.278#texinfo_appendices = []279280# If false, no module index is generated.281#texinfo_domain_indices = True282283# How to display URL addresses: 'footnote', 'no', or 'inline'.284#texinfo_show_urls = 'footnote'285286# If true, do not generate a @detailmenu in the "Top" node's menu.287#texinfo_no_detailmenu = False288289290