annotate doc/conf.py @ 333:6fc2d27bd2ef

Shorten long lines
author Amine Sehili <amine.sehili@gmail.com>
date Fri, 25 Oct 2019 20:23:51 +0100
parents 9741b52f194a
children b4185dc7b574
rev   line source
amine@23 1 # -*- coding: utf-8 -*-
amine@23 2 #
amine@23 3 # auditok documentation build configuration file, created by
amine@23 4 # sphinx-quickstart on Mon Sep 21 21:20:14 2015.
amine@23 5 #
amine@23 6 # This file is execfile()d with the current directory set to its
amine@23 7 # containing dir.
amine@23 8 #
amine@23 9 # Note that not all possible configuration values are present in this
amine@23 10 # autogenerated file.
amine@23 11 #
amine@23 12 # All configuration values have a default; values that are commented out
amine@23 13 # serve to show the default.
amine@23 14
amine@23 15 import sys
amine@23 16 import os
amine@23 17 import shlex
amine@23 18
amine@23 19 # If extensions (or modules to document with autodoc) are in another directory,
amine@23 20 # add these directories to sys.path here. If the directory is relative to the
amine@23 21 # documentation root, use os.path.abspath to make it absolute, like shown here.
amine@331 22 # sys.path.insert(0, os.path.abspath('.'))
amine@23 23
amine@23 24 # -- General configuration ------------------------------------------------
amine@23 25
amine@23 26 # If your documentation needs a minimal Sphinx version, state it here.
amine@331 27 # needs_sphinx = '1.0'
amine@23 28
amine@23 29 # Add any Sphinx extension module names here, as strings. They can be
amine@23 30 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
amine@23 31 # ones.
amine@23 32 extensions = [
amine@331 33 "sphinx.ext.viewcode",
amine@331 34 "sphinx.ext.autodoc",
amine@331 35 "sphinx.ext.autosummary",
amine@23 36 ]
amine@23 37
amine@331 38 sys.path.insert(0, "../auditok/")
amine@32 39
amine@23 40 # Add any paths that contain templates here, relative to this directory.
amine@331 41 templates_path = ["_templates"]
amine@23 42
amine@23 43 # The suffix(es) of source filenames.
amine@23 44 # You can specify multiple suffix as a list of string:
amine@23 45 # source_suffix = ['.rst', '.md']
amine@331 46 source_suffix = ".rst"
amine@23 47
amine@23 48 # The encoding of source files.
amine@331 49 # source_encoding = 'utf-8-sig'
amine@23 50
amine@23 51 # The master toctree document.
amine@331 52 master_doc = "index"
amine@23 53
amine@23 54 # General information about the project.
amine@331 55 project = u"auditok"
amine@331 56 copyright = u"2015-2016, Amine Sehili"
amine@331 57 author = u"Amine Sehili"
amine@23 58
amine@23 59 # The version info for the project you're documenting, acts as replacement for
amine@23 60 # |version| and |release|, also used in various other places throughout the
amine@23 61 # built documents.
amine@23 62 #
amine@23 63 # The short X.Y version.
amine@331 64 version = "0.1.5"
amine@23 65 # The full version, including alpha/beta/rc tags.
amine@331 66 release = "0.1.5"
amine@23 67
amine@23 68 # The language for content autogenerated by Sphinx. Refer to documentation
amine@23 69 # for a list of supported languages.
amine@23 70 #
amine@23 71 # This is also used if you do content translation via gettext catalogs.
amine@23 72 # Usually you set "language" from the command line for these cases.
amine@23 73 language = None
amine@23 74
amine@23 75 # There are two options for replacing |today|: either, you set today to some
amine@23 76 # non-false value, then it is used:
amine@331 77 # today = ''
amine@23 78 # Else, today_fmt is used as the format for a strftime call.
amine@331 79 # today_fmt = '%B %d, %Y'
amine@23 80
amine@23 81 # List of patterns, relative to source directory, that match files and
amine@23 82 # directories to ignore when looking for source files.
amine@331 83 exclude_patterns = ["_build"]
amine@23 84
amine@23 85 # The reST default role (used for this markup: `text`) to use for all
amine@23 86 # documents.
amine@331 87 # default_role = None
amine@23 88
amine@23 89 # If true, '()' will be appended to :func: etc. cross-reference text.
amine@331 90 # add_function_parentheses = True
amine@23 91
amine@23 92 # If true, the current module name will be prepended to all description
amine@23 93 # unit titles (such as .. function::).
amine@331 94 # add_module_names = True
amine@23 95
amine@23 96 # If true, sectionauthor and moduleauthor directives will be shown in the
amine@23 97 # output. They are ignored by default.
amine@331 98 # show_authors = False
amine@23 99
amine@23 100 # The name of the Pygments (syntax highlighting) style to use.
amine@331 101 pygments_style = "sphinx"
amine@23 102
amine@23 103 # A list of ignored prefixes for module index sorting.
amine@331 104 # modindex_common_prefix = []
amine@23 105
amine@23 106 # If true, keep warnings as "system message" paragraphs in the built documents.
amine@331 107 # keep_warnings = False
amine@23 108
amine@23 109 # If true, `todo` and `todoList` produce output, else they produce nothing.
amine@23 110 todo_include_todos = False
amine@23 111
amine@23 112
amine@23 113 # -- Options for HTML output ----------------------------------------------
amine@23 114
amine@23 115 # The theme to use for HTML and HTML Help pages. See the documentation for
amine@23 116 # a list of builtin themes.
amine@331 117 # html_theme = 'sphinxdoc'
amine@32 118
amine@34 119
amine@23 120 # on_rtd is whether we are on readthedocs.org
amine@331 121 on_rtd = os.environ.get("READTHEDOCS", None) == "True"
amine@331 122 # if not on_rtd: # only import and set the theme if we're building docs locally
amine@331 123 # import sphinx_rtd_theme
amine@331 124 # html_theme = 'sphinx_rtd_theme'
amine@331 125 # html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
amine@35 126
amine@23 127 # Theme options are theme-specific and customize the look and feel of a theme
amine@23 128 # further. For a list of options available for each theme, see the
amine@23 129 # documentation.
amine@331 130 # html_theme_options = {}
amine@23 131
amine@23 132 # Add any paths that contain custom themes here, relative to this directory.
amine@331 133 # html_theme_path = []
amine@23 134
amine@23 135 # The name for this set of Sphinx documents. If None, it defaults to
amine@23 136 # "<project> v<release> documentation".
amine@331 137 # html_title = None
amine@23 138
amine@23 139 # A shorter title for the navigation bar. Default is the same as html_title.
amine@331 140 # html_short_title = None
amine@23 141
amine@23 142 # The name of an image file (relative to this directory) to place at the top
amine@23 143 # of the sidebar.
amine@331 144 # html_logo = None
amine@23 145
amine@23 146 # The name of an image file (within the static path) to use as favicon of the
amine@23 147 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
amine@23 148 # pixels large.
amine@331 149 # html_favicon = None
amine@23 150
amine@23 151 # Add any paths that contain custom static files (such as style sheets) here,
amine@23 152 # relative to this directory. They are copied after the builtin static files,
amine@23 153 # so a file named "default.css" will overwrite the builtin "default.css".
amine@331 154 html_static_path = ["_static"]
amine@23 155
amine@23 156 # Add any extra paths that contain custom files (such as robots.txt or
amine@23 157 # .htaccess) here, relative to this directory. These files are copied
amine@23 158 # directly to the root of the documentation.
amine@331 159 # html_extra_path = []
amine@23 160
amine@23 161 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
amine@23 162 # using the given strftime format.
amine@331 163 # html_last_updated_fmt = '%b %d, %Y'
amine@23 164
amine@23 165 # If true, SmartyPants will be used to convert quotes and dashes to
amine@23 166 # typographically correct entities.
amine@331 167 # html_use_smartypants = True
amine@23 168
amine@23 169 # Custom sidebar templates, maps document names to template names.
amine@331 170 # html_sidebars = {}
amine@23 171
amine@23 172 # Additional templates that should be rendered to pages, maps page names to
amine@23 173 # template names.
amine@331 174 # html_additional_pages = {}
amine@23 175
amine@23 176 # If false, no module index is generated.
amine@331 177 # html_domain_indices = True
amine@23 178
amine@23 179 # If false, no index is generated.
amine@331 180 # html_use_index = True
amine@23 181
amine@23 182 # If true, the index is split into individual pages for each letter.
amine@331 183 # html_split_index = False
amine@23 184
amine@23 185 # If true, links to the reST sources are added to the pages.
amine@331 186 # html_show_sourcelink = True
amine@23 187
amine@23 188 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
amine@331 189 # html_show_sphinx = True
amine@23 190
amine@23 191 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
amine@331 192 # html_show_copyright = True
amine@23 193
amine@23 194 # If true, an OpenSearch description file will be output, and all pages will
amine@23 195 # contain a <link> tag referring to it. The value of this option must be the
amine@23 196 # base URL from which the finished HTML is served.
amine@331 197 # html_use_opensearch = ''
amine@23 198
amine@23 199 # This is the file name suffix for HTML files (e.g. ".xhtml").
amine@331 200 # html_file_suffix = None
amine@23 201
amine@23 202 # Language to be used for generating the HTML full-text search index.
amine@23 203 # Sphinx supports the following languages:
amine@23 204 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
amine@23 205 # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
amine@331 206 # html_search_language = 'en'
amine@23 207
amine@23 208 # A dictionary with options for the search language support, empty by default.
amine@23 209 # Now only 'ja' uses this config value
amine@331 210 # html_search_options = {'type': 'default'}
amine@23 211
amine@23 212 # The name of a javascript file (relative to the configuration directory) that
amine@23 213 # implements a search results scorer. If empty, the default will be used.
amine@331 214 # html_search_scorer = 'scorer.js'
amine@23 215
amine@23 216 # Output file base name for HTML help builder.
amine@331 217 htmlhelp_basename = "auditokdoc"
amine@23 218
amine@23 219 # -- Options for LaTeX output ---------------------------------------------
amine@23 220
amine@23 221 latex_elements = {
amine@331 222 # The paper size ('letterpaper' or 'a4paper').
amine@331 223 # 'papersize': 'letterpaper',
amine@331 224 # The font size ('10pt', '11pt' or '12pt').
amine@331 225 # 'pointsize': '10pt',
amine@331 226 # Additional stuff for the LaTeX preamble.
amine@331 227 # 'preamble': '',
amine@331 228 # Latex figure (float) alignment
amine@331 229 # 'figure_align': 'htbp',
amine@23 230 }
amine@23 231
amine@23 232 # Grouping the document tree into LaTeX files. List of tuples
amine@23 233 # (source start file, target name, title,
amine@23 234 # author, documentclass [howto, manual, or own class]).
amine@23 235 latex_documents = [
amine@331 236 (
amine@331 237 master_doc,
amine@331 238 "auditok.tex",
amine@331 239 u"auditok Documentation",
amine@331 240 u"Amine Sehili",
amine@331 241 "manual",
amine@331 242 ),
amine@23 243 ]
amine@23 244
amine@23 245 # The name of an image file (relative to this directory) to place at the top of
amine@23 246 # the title page.
amine@331 247 # latex_logo = None
amine@23 248
amine@23 249 # For "manual" documents, if this is true, then toplevel headings are parts,
amine@23 250 # not chapters.
amine@331 251 # latex_use_parts = False
amine@23 252
amine@23 253 # If true, show page references after internal links.
amine@331 254 # latex_show_pagerefs = False
amine@23 255
amine@23 256 # If true, show URL addresses after external links.
amine@331 257 # latex_show_urls = False
amine@23 258
amine@23 259 # Documents to append as an appendix to all manuals.
amine@331 260 # latex_appendices = []
amine@23 261
amine@23 262 # If false, no module index is generated.
amine@331 263 # latex_domain_indices = True
amine@23 264
amine@23 265
amine@23 266 # -- Options for manual page output ---------------------------------------
amine@23 267
amine@23 268 # One entry per manual page. List of tuples
amine@23 269 # (source start file, name, description, authors, manual section).
amine@331 270 man_pages = [(master_doc, "auditok", u"auditok Documentation", [author], 1)]
amine@23 271
amine@23 272 # If true, show URL addresses after external links.
amine@331 273 # man_show_urls = False
amine@23 274
amine@23 275
amine@23 276 # -- Options for Texinfo output -------------------------------------------
amine@23 277
amine@23 278 # Grouping the document tree into Texinfo files. List of tuples
amine@23 279 # (source start file, target name, title, author,
amine@23 280 # dir menu entry, description, category)
amine@23 281 texinfo_documents = [
amine@331 282 (
amine@331 283 master_doc,
amine@331 284 "auditok",
amine@331 285 u"auditok Documentation",
amine@331 286 author,
amine@331 287 "auditok",
amine@331 288 "One line description of project.",
amine@331 289 "Miscellaneous",
amine@331 290 ),
amine@23 291 ]
amine@23 292
amine@23 293 # Documents to append as an appendix to all manuals.
amine@331 294 # texinfo_appendices = []
amine@23 295
amine@23 296 # If false, no module index is generated.
amine@331 297 # texinfo_domain_indices = True
amine@23 298
amine@23 299 # How to display URL addresses: 'footnote', 'no', or 'inline'.
amine@331 300 # texinfo_show_urls = 'footnote'
amine@23 301
amine@23 302 # If true, do not generate a @detailmenu in the "Top" node's menu.
amine@331 303 # texinfo_no_detailmenu = False