2012-11-19 23:08:35 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2017-04-19 10:22:26 +01:00
|
|
|
# designateclient documentation build configuration file
|
2012-11-19 23:08:35 +00:00
|
|
|
|
|
|
|
# -- 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.
|
2020-10-12 14:44:02 +11:00
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'sphinx.ext.viewcode',
|
|
|
|
'sphinxcontrib.apidoc',
|
2020-10-13 11:53:37 -07:00
|
|
|
'openstackdocstheme',
|
|
|
|
'cliff.sphinxext']
|
2017-06-28 17:18:56 -04:00
|
|
|
|
|
|
|
# openstackdocstheme options
|
2020-05-18 21:30:02 +02:00
|
|
|
openstackdocs_repo_name = 'openstack/python-designateclient'
|
|
|
|
openstackdocs_bug_project = 'python-designateclient'
|
|
|
|
openstackdocs_bug_tag = ''
|
2017-06-28 17:18:56 -04:00
|
|
|
html_theme = 'openstackdocs'
|
2012-11-19 23:08:35 +00:00
|
|
|
|
2020-10-12 14:44:02 +11:00
|
|
|
apidoc_module_dir = '../../designateclient'
|
|
|
|
apidoc_output_dir = 'reference/api'
|
|
|
|
apidoc_excluded_paths = [ 'tests/*', 'functionaltests/*' ]
|
|
|
|
apidoc_separate_modules = True
|
|
|
|
|
|
|
|
autodoc_exclude_modules = [
|
|
|
|
'designateclient.tests.*',
|
|
|
|
'designateclient.functionaltests.*']
|
|
|
|
|
2012-11-19 23:08:35 +00: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.
|
2014-04-14 19:26:59 +01:00
|
|
|
copyright = u'2012, Managed I.T. 2013-2014, Hewlett-Packard Development Company, L.P.'
|
2012-11-19 23:08:35 +00:00
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
|
|
|
exclude_patterns = []
|
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
2020-05-18 21:30:02 +02:00
|
|
|
pygments_style = 'native'
|
2012-11-19 23:08:35 +00:00
|
|
|
|
|
|
|
# A list of ignored prefixes for module index sorting.
|
2017-01-26 23:51:12 -05:00
|
|
|
modindex_common_prefix = ['designateclient']
|
2012-11-19 23:08:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
# -- Options for HTML output ---------------------------------------------------
|
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
2013-06-09 21:18:36 +01:00
|
|
|
htmlhelp_basename = 'designateclientdoc'
|