blob: a42f205ae4a1fdb32b20e21b7f16d9ce8b1080bc [file] [log] [blame]
marco70723542016-06-14 20:25:31 +02001# -*- coding: utf-8 -*-
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11# implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import os
16import sys
17
18sys.path.insert(0, os.path.abspath('../..'))
19# -- General configuration ----------------------------------------------------
20
21# Add any Sphinx extension module names here, as strings. They can be
22# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
23extensions = [
24 'sphinx.ext.autodoc',
25]
26
27# autodoc generation is a bit aggressive and a nuisance when doing heavy
28# text edit cycles.
29# execute "export SPHINX_DEBUG=1" in your terminal to disable
30
31# The suffix of source filenames.
32source_suffix = '.rst'
33
34# The master toctree document.
35master_doc = 'index'
36
37# General information about the project.
38project = u'salt-formula-zookeeper'
39copyright = u'2016, tcp cloud a.s.'
40
41# If true, '()' will be appended to :func: etc. cross-reference text.
42add_function_parentheses = True
43
44# If true, the current module name will be prepended to all description
45# unit titles (such as .. function::).
46add_module_names = True
47
48# The name of the Pygments (syntax highlighting) style to use.
49pygments_style = 'sphinx'
50
51# -- Options for HTML output --------------------------------------------------
52
53# The theme to use for HTML and HTML Help pages. Major themes that come with
54# Sphinx are currently 'default' and 'sphinxdoc'.
55# html_theme_path = ["."]
56# html_theme = '_theme'
57# html_static_path = ['static']
58
59# Output file base name for HTML help builder.
60htmlhelp_basename = '%sdoc' % project
61
62# Grouping the document tree into LaTeX files. List of tuples
63# (source start file, target name, title, author, documentclass
64# [howto/manual]).
65latex_documents = [
66 ('index',
67 '%s.tex' % project,
68 u'%s Documentation' % project,
69 u'OpenStack Foundation', 'manual'),
70]
71
72# Example configuration for intersphinx: refer to the Python standard library.
73# intersphinx_mapping = {'http://docs.python.org/': None}