diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/rtd/conf.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/rtd/conf.py b/doc/rtd/conf.py index 4316b5d9..d2cb6ae1 100644 --- a/doc/rtd/conf.py +++ b/doc/rtd/conf.py @@ -6,10 +6,10 @@ from cloudinit import version # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -sys.path.insert(0, os.path.abspath('../../')) -sys.path.insert(0, os.path.abspath('../')) -sys.path.insert(0, os.path.abspath('./')) -sys.path.insert(0, os.path.abspath('.')) +sys.path.insert(0, os.path.abspath("../../")) +sys.path.insert(0, os.path.abspath("../")) +sys.path.insert(0, os.path.abspath("./")) +sys.path.insert(0, os.path.abspath(".")) # Supress warnings for docs that aren't used yet @@ -17,8 +17,8 @@ sys.path.insert(0, os.path.abspath('.')) # ] # General information about the project. -project = 'cloud-init' -copyright = '2020, Canonical Ltd.' +project = "cloud-init" +copyright = "2020, Canonical Ltd." # -- General configuration ---------------------------------------------------- @@ -28,17 +28,17 @@ copyright = '2020, Canonical Ltd.' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = [ - 'm2r', - 'sphinx.ext.autodoc', - 'sphinx.ext.autosectionlabel', - 'sphinx.ext.viewcode', + "m2r", + "sphinx.ext.autodoc", + "sphinx.ext.autosectionlabel", + "sphinx.ext.viewcode", ] # The suffix of source filenames. -source_suffix = '.rst' +source_suffix = ".rst" # The master toctree document. -master_doc = 'index' +master_doc = "index" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -47,7 +47,7 @@ version = version.version_string() release = version # Set the default Pygments syntax -highlight_language = 'yaml' +highlight_language = "yaml" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -61,8 +61,8 @@ show_authors = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_rtd_theme" # The name of an image file (relative to this directory) to place at the top # of the sidebar. -html_logo = 'static/logo.png' +html_logo = "static/logo.png" |