Blame docs/source/conf.py

Packit ea1746
# -*- coding: utf-8 -*-
Packit ea1746
#
Packit ea1746
# Ceres Solver documentation build configuration file, created by
Packit ea1746
# sphinx-quickstart on Sun Jan 20 20:34:07 2013.
Packit ea1746
#
Packit ea1746
# This file is execfile()d with the current directory set to its containing dir.
Packit ea1746
#
Packit ea1746
# Note that not all possible configuration values are present in this
Packit ea1746
# autogenerated file.
Packit ea1746
#
Packit ea1746
# All configuration values have a default; values that are commented out
Packit ea1746
# serve to show the default.
Packit ea1746
Packit ea1746
import sys, os
Packit ea1746
Packit ea1746
# If extensions (or modules to document with autodoc) are in another directory,
Packit ea1746
# add these directories to sys.path here. If the directory is relative to the
Packit ea1746
# documentation root, use os.path.abspath to make it absolute, like shown here.
Packit ea1746
#sys.path.insert(0, os.path.abspath('.'))
Packit ea1746
Packit ea1746
# -- General configuration -----------------------------------------------------
Packit ea1746
Packit ea1746
# If your documentation needs a minimal Sphinx version, state it here.
Packit ea1746
#needs_sphinx = '1.0'
Packit ea1746
Packit ea1746
# Add any Sphinx extension module names here, as strings. They can be extensions
Packit ea1746
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Packit ea1746
extensions = ['sphinx.ext.todo', 'sphinx.ext.mathjax', 'sphinx.ext.ifconfig']
Packit ea1746
Packit ea1746
# Add any paths that contain templates here, relative to this directory.
Packit ea1746
templates_path = ['_templates']
Packit ea1746
Packit ea1746
# The suffix of source filenames.
Packit ea1746
source_suffix = '.rst'
Packit ea1746
Packit ea1746
# The encoding of source files.
Packit ea1746
#source_encoding = 'utf-8-sig'
Packit ea1746
Packit ea1746
# The master toctree document.
Packit ea1746
master_doc = 'index'
Packit ea1746
Packit ea1746
# General information about the project.
Packit ea1746
project = u'Ceres Solver'
Packit ea1746
copyright = u'2016 Google Inc'
Packit ea1746
Packit ea1746
# The version info for the project you're documenting, acts as replacement for
Packit ea1746
# |version| and |release|, also used in various other places throughout the
Packit ea1746
# built documents.
Packit ea1746
#
Packit ea1746
# The short X.Y version.
Packit ea1746
version = '1.13'
Packit ea1746
# The full version, including alpha/beta/rc tags.
Packit ea1746
release = '1.13.0'
Packit ea1746
Packit ea1746
# The language for content autogenerated by Sphinx. Refer to documentation
Packit ea1746
# for a list of supported languages.
Packit ea1746
#language = None
Packit ea1746
Packit ea1746
# There are two options for replacing |today|: either, you set today to some
Packit ea1746
# non-false value, then it is used:
Packit ea1746
#today = ''
Packit ea1746
# Else, today_fmt is used as the format for a strftime call.
Packit ea1746
#today_fmt = '%B %d, %Y'
Packit ea1746
Packit ea1746
# List of patterns, relative to source directory, that match files and
Packit ea1746
# directories to ignore when looking for source files.
Packit ea1746
exclude_patterns = []
Packit ea1746
Packit ea1746
# The reST default role (used for this markup: `text`) to use for all documents.
Packit ea1746
#default_role = None
Packit ea1746
Packit ea1746
# If true, '()' will be appended to :func: etc. cross-reference text.
Packit ea1746
#add_function_parentheses = True
Packit ea1746
Packit ea1746
# If true, the current module name will be prepended to all description
Packit ea1746
# unit titles (such as .. function::).
Packit ea1746
#add_module_names = True
Packit ea1746
Packit ea1746
# If true, sectionauthor and moduleauthor directives will be shown in the
Packit ea1746
# output. They are ignored by default.
Packit ea1746
#show_authors = False
Packit ea1746
Packit ea1746
# The name of the Pygments (syntax highlighting) style to use.
Packit ea1746
pygments_style = 'sphinx'
Packit ea1746
Packit ea1746
# A list of ignored prefixes for module index sorting.
Packit ea1746
#modindex_common_prefix = []
Packit ea1746
Packit ea1746
# -- Options for HTML output ---------------------------------------------------
Packit ea1746
Packit ea1746
# The theme to use for HTML and HTML Help pages.  See the documentation for
Packit ea1746
# a list of builtin themes.
Packit ea1746
html_theme = 'sphinx_rtd_theme'
Packit ea1746
Packit ea1746
# Theme options are theme-specific and customize the look and feel of a theme
Packit ea1746
# further.  For a list of options available for each theme, see the
Packit ea1746
# documentation.
Packit ea1746
#html_theme_options = {}
Packit ea1746
Packit ea1746
# Add any paths that contain custom themes here, relative to this directory.
Packit ea1746
html_theme_path = ["_themes",]
Packit ea1746
import sphinx_rtd_theme
Packit ea1746
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
Packit ea1746
Packit ea1746
# The name for this set of Sphinx documents.  If None, it defaults to
Packit ea1746
# "<project> v<release> documentation".
Packit ea1746
html_title = "Ceres Solver"
Packit ea1746
Packit ea1746
# A shorter title for the navigation bar.  Default is the same as html_title.
Packit ea1746
#html_short_title = None
Packit ea1746
Packit ea1746
# The name of an image file (relative to this directory) to place at the top
Packit ea1746
# of the sidebar.
Packit ea1746
#html_logo = None
Packit ea1746
Packit ea1746
# The name of an image file (within the static path) to use as favicon of the
Packit ea1746
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
Packit ea1746
# pixels large.
Packit ea1746
#html_favicon = None
Packit ea1746
Packit ea1746
# Add any paths that contain custom static files (such as style sheets) here,
Packit ea1746
# relative to this directory. They are copied after the builtin static files,
Packit ea1746
# so a file named "default.css" will overwrite the builtin "default.css".
Packit ea1746
#html_static_path = ['_static']
Packit ea1746
Packit ea1746
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
Packit ea1746
# using the given strftime format.
Packit ea1746
#html_last_updated_fmt = '%b %d, %Y'
Packit ea1746
Packit ea1746
# If true, SmartyPants will be used to convert quotes and dashes to
Packit ea1746
# typographically correct entities.
Packit ea1746
html_use_smartypants = True
Packit ea1746
Packit ea1746
# Custom sidebar templates, maps document names to template names.
Packit ea1746
#html_sidebars = {}
Packit ea1746
Packit ea1746
# Additional templates that should be rendered to pages, maps page names to
Packit ea1746
# template names.
Packit ea1746
#html_additional_pages = {}
Packit ea1746
Packit ea1746
# If false, no module index is generated.
Packit ea1746
html_domain_indices = True
Packit ea1746
Packit ea1746
# If false, no index is generated.
Packit ea1746
html_use_index = True
Packit ea1746
Packit ea1746
# If true, the index is split into individual pages for each letter.
Packit ea1746
html_split_index = False
Packit ea1746
Packit ea1746
# If true, links to the reST sources are added to the pages.
Packit ea1746
html_show_sourcelink = False
Packit ea1746
Packit ea1746
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
Packit ea1746
html_show_sphinx = False
Packit ea1746
Packit ea1746
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
Packit ea1746
html_show_copyright = True
Packit ea1746
Packit ea1746
# If true, an OpenSearch description file will be output, and all pages will
Packit ea1746
# contain a <link> tag referring to it.  The value of this option must be the
Packit ea1746
# base URL from which the finished HTML is served.
Packit ea1746
#html_use_opensearch = ''
Packit ea1746
Packit ea1746
# This is the file name suffix for HTML files (e.g. ".xhtml").
Packit ea1746
#html_file_suffix = None
Packit ea1746
Packit ea1746
# Output file base name for HTML help builder.
Packit ea1746
htmlhelp_basename = 'CeresSolverdoc'
Packit ea1746
Packit ea1746
# -- Options for LaTeX output --------------------------------------------------
Packit ea1746
Packit ea1746
latex_elements = {
Packit ea1746
# The paper size ('letterpaper' or 'a4paper').
Packit ea1746
#'papersize': 'letterpaper',
Packit ea1746
Packit ea1746
# The font size ('10pt', '11pt' or '12pt').
Packit ea1746
#'pointsize': '10pt',
Packit ea1746
Packit ea1746
# Additional stuff for the LaTeX preamble.
Packit ea1746
#'preamble': '',
Packit ea1746
}
Packit ea1746
Packit ea1746
# Grouping the document tree into LaTeX files. List of tuples
Packit ea1746
# (source start file, target name, title, author, documentclass [howto/manual]).
Packit ea1746
latex_documents = [
Packit ea1746
  ('index', 'CeresSolver.tex', u'Ceres Solver',
Packit ea1746
   u'Sameer Agarwal, Keir Mierle & Others', 'manual'),
Packit ea1746
]
Packit ea1746
Packit ea1746
# The name of an image file (relative to this directory) to place at the top of
Packit ea1746
# the title page.
Packit ea1746
#latex_logo = None
Packit ea1746
Packit ea1746
# For "manual" documents, if this is true, then toplevel headings are parts,
Packit ea1746
# not chapters.
Packit ea1746
#latex_use_parts = False
Packit ea1746
Packit ea1746
# If true, show page references after internal links.
Packit ea1746
#latex_show_pagerefs = False
Packit ea1746
Packit ea1746
# If true, show URL addresses after external links.
Packit ea1746
#latex_show_urls = False
Packit ea1746
Packit ea1746
# Documents to append as an appendix to all manuals.
Packit ea1746
#latex_appendices = []
Packit ea1746
Packit ea1746
# If false, no module index is generated.
Packit ea1746
#latex_domain_indices = True
Packit ea1746
Packit ea1746
Packit ea1746
# -- Options for manual page output --------------------------------------------
Packit ea1746
Packit ea1746
# One entry per manual page. List of tuples
Packit ea1746
# (source start file, name, description, authors, manual section).
Packit ea1746
man_pages = [
Packit ea1746
    ('index', 'ceressolver', u'Ceres Solver',
Packit ea1746
     [u'Sameer Agarwal, Keir Mierle & Others'], 1)
Packit ea1746
]
Packit ea1746
Packit ea1746
# If true, show URL addresses after external links.
Packit ea1746
#man_show_urls = False
Packit ea1746
Packit ea1746
Packit ea1746
# -- Options for Texinfo output ------------------------------------------------
Packit ea1746
Packit ea1746
# Grouping the document tree into Texinfo files. List of tuples
Packit ea1746
# (source start file, target name, title, author,
Packit ea1746
#  dir menu entry, description, category)
Packit ea1746
texinfo_documents = [
Packit ea1746
  ('index', 'CeresSolver', u'Ceres Solver',
Packit ea1746
   u'Sameer Agarwal, Keir Mierle & Others', 'CeresSolver', 'One line description of project.',
Packit ea1746
   'Miscellaneous'),
Packit ea1746
]
Packit ea1746
Packit ea1746
# Documents to append as an appendix to all manuals.
Packit ea1746
#texinfo_appendices = []
Packit ea1746
Packit ea1746
# If false, no module index is generated.
Packit ea1746
#texinfo_domain_indices = True
Packit ea1746
Packit ea1746
# How to display URL addresses: 'footnote', 'no', or 'inline'.
Packit ea1746
#texinfo_show_urls = 'footnote'