2012-06-13 16:10:57 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
|
|
|
|
# -- General configuration ---------------------------------------------
|
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
2017-05-21 00:59:46 +09:00
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'reno.sphinxext',
|
|
|
|
'openstackdocstheme',
|
2018-01-16 14:43:40 +09:00
|
|
|
'cliff.sphinxext',
|
2015-11-24 07:13:42 +09:00
|
|
|
]
|
2012-06-13 16:10:57 -04:00
|
|
|
|
2017-06-30 15:40:19 +09:00
|
|
|
# openstackdocstheme options
|
2020-05-18 22:08:18 +02:00
|
|
|
openstackdocs_repo_name = 'openstack/python-neutronclient'
|
|
|
|
openstackdocs_pdf_link = True
|
|
|
|
openstackdocs_bug_project = 'python-neutronclient'
|
|
|
|
openstackdocs_bug_tag = 'doc'
|
2017-06-30 15:40:19 +09:00
|
|
|
|
2012-06-13 16:10:57 -04:00
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
templates_path = ['_templates']
|
|
|
|
|
|
|
|
# The suffix of source filenames.
|
|
|
|
source_suffix = '.rst'
|
|
|
|
|
|
|
|
# The master toctree document.
|
|
|
|
master_doc = 'index'
|
|
|
|
|
|
|
|
# General information about the project.
|
2021-01-03 16:57:16 +08:00
|
|
|
copyright = 'OpenStack Foundation'
|
2012-06-13 16:10:57 -04:00
|
|
|
|
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
|
|
|
add_function_parentheses = True
|
|
|
|
|
|
|
|
# If true, the current module name will be prepended to all description
|
|
|
|
# unit titles (such as .. function::).
|
|
|
|
add_module_names = True
|
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
|
|
|
# -- Options for HTML output ---------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. Major themes that come with
|
|
|
|
# Sphinx are currently 'default' and 'sphinxdoc'.
|
2017-06-18 03:11:30 +09:00
|
|
|
html_theme = 'openstackdocs'
|
|
|
|
|
2012-06-13 16:10:57 -04:00
|
|
|
# Output file base name for HTML help builder.
|
2017-06-30 15:40:19 +09:00
|
|
|
htmlhelp_basename = 'neutronclientdoc'
|
2017-05-21 00:59:46 +09:00
|
|
|
|
2019-08-27 16:27:45 +09:00
|
|
|
# -- Options for LaTeX output ------------------------------------------------
|
|
|
|
|
|
|
|
latex_documents = [
|
|
|
|
('index', 'doc-python-neutronclient.tex',
|
2021-01-03 16:57:16 +08:00
|
|
|
'python-neutronclient Documentation',
|
|
|
|
'Neutron Contributors', 'manual'),
|
2019-08-27 16:27:45 +09:00
|
|
|
]
|
|
|
|
|
|
|
|
# Disable usage of xindy https://bugzilla.redhat.com/show_bug.cgi?id=1643664
|
|
|
|
latex_use_xindy = False
|
|
|
|
|
|
|
|
latex_domain_indices = False
|
|
|
|
|
|
|
|
latex_elements = {
|
|
|
|
'makeindex': '',
|
|
|
|
'printindex': '',
|
|
|
|
'preamble': r'\setcounter{tocdepth}{5}',
|
|
|
|
}
|
|
|
|
|
2017-05-21 00:59:46 +09:00
|
|
|
# -- Options for cliff.sphinxext plugin ---------------------------------------
|
|
|
|
|
|
|
|
autoprogram_cliff_application = 'openstack'
|