full commit
[propaganda-bots.git] / conf.py
blob31f3b55e173cb6a1cd586cd1023b78e1f632164e
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
4 # DevOps documentation build configuration file, created by
5 # sphinx-quickstart on Mon Jun 26 10:23:26 2017.
7 # This file is execfile()d with the current directory set to its
8 # containing dir.
10 # Note that not all possible configuration values are present in this
11 # autogenerated file.
13 # All configuration values have a default; values that are commented out
14 # serve to show the default.
16 # If extensions (or modules to document with autodoc) are in another directory,
17 # add these directories to sys.path here. If the directory is relative to the
18 # documentation root, use os.path.abspath to make it absolute, like shown here.
20 import os
21 import sys
22 sys.path.insert(0, os.path.abspath('../'))
25 # -- General configuration ------------------------------------------------
27 # If your documentation needs a minimal Sphinx version, state it here.
29 # needs_sphinx = '1.0'
31 # Add any Sphinx extension module names here, as strings. They can be
32 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
33 # ones.
34 extensions = ['sphinx.ext.autodoc']
36 # Add any paths that contain templates here, relative to this directory.
37 templates_path = ['_templates']
39 # The suffix(es) of source filenames.
40 # You can specify multiple suffix as a list of string:
42 # source_suffix = ['.rst', '.md']
43 source_suffix = '.rst'
45 # The master toctree document.
46 master_doc = 'index'
48 # General information about the project.
49 project = 'Reality Show'
50 copyright = '2018, Open Information'
51 author = 'hypothesis'
53 # The version info for the project you're documenting, acts as replacement for
54 # |version| and |release|, also used in various other places throughout the
55 # built documents.
57 # The short X.Y version.
58 version = '0.1'
59 # The full version, including alpha/beta/rc tags.
60 release = 'alpha'
62 # The language for content autogenerated by Sphinx. Refer to documentation
63 # for a list of supported languages.
65 # This is also used if you do content translation via gettext catalogs.
66 # Usually you set "language" from the command line for these cases.
67 language = None
69 # List of patterns, relative to source directory, that match files and
70 # directories to ignore when looking for source files.
71 # This patterns also effect to html_static_path and html_extra_path
72 exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
74 # The name of the Pygments (syntax highlighting) style to use.
75 pygments_style = 'sphinx'
77 # If true, `todo` and `todoList` produce output, else they produce nothing.
78 todo_include_todos = False
81 # -- Options for HTML output ----------------------------------------------
83 # The theme to use for HTML and HTML Help pages. See the documentation for
84 # a list of builtin themes.
86 html_theme = 'alabaster'
88 # Theme options are theme-specific and customize the look and feel of a theme
89 # further. For a list of options available for each theme, see the
90 # documentation.
92 html_theme_options = {
93 'logo': 'logo.png',
94 'fixed_sidebar': 'true',
97 #html_logo = 'logo.png'
99 #html_show_sourcelink = False
101 html_sidebars = {
102 '**': [
103 'about.html',
104 'searchbox.html',
105 'localtoc.html'
109 # Add any paths that contain custom static files (such as style sheets) here,
110 # relative to this directory. They are copied after the builtin static files,
111 # so a file named "default.css" will overwrite the builtin "default.css".
112 html_static_path = ['_static']
115 # -- Options for HTMLHelp output ------------------------------------------
117 # Output file base name for HTML help builder.
118 htmlhelp_basename = 'RealityShowdoc'
121 # -- Options for LaTeX output ---------------------------------------------
123 latex_elements = {
124 # The paper size ('letterpaper' or 'a4paper').
126 # 'papersize': 'letterpaper',
128 # The font size ('10pt', '11pt' or '12pt').
130 # 'pointsize': '10pt',
132 # Additional stuff for the LaTeX preamble.
134 # 'preamble': '',
136 # Latex figure (float) alignment
138 # 'figure_align': 'htbp',
141 # Grouping the document tree into LaTeX files. List of tuples
142 # (source start file, target name, title,
143 # author, documentclass [howto, manual, or own class]).
144 latex_documents = [
145 (master_doc, 'RealityShow.tex', 'Reality Show Docs',
146 'Hyp0thesiz', 'manual'),
150 # -- Options for manual page output ---------------------------------------
152 # One entry per manual page. List of tuples
153 # (source start file, name, description, authors, manual section).
154 man_pages = [
155 (master_doc, 'RealityShow', 'Reality Show Docs',
156 [author], 1)
160 # -- Options for Texinfo output -------------------------------------------
162 # Grouping the document tree into Texinfo files. List of tuples
163 # (source start file, target name, title, author,
164 # dir menu entry, description, category)
165 texinfo_documents = [
166 (master_doc, 'RealityShow', 'RealityShow Docs',
167 author, 'Reality Show', 'Information Map',
168 'Miscellaneous'),