conf.py
Go to the documentation of this file.
00001 # -*- coding: utf-8 -*-
00002 #
00003 # Boost.NumPy documentation build configuration file, created by
00004 # sphinx-quickstart on Thu Oct 27 09:04:58 2011.
00005 #
00006 # This file is execfile()d with the current directory set to its containing dir.
00007 #
00008 # Note that not all possible configuration values are present in this
00009 # autogenerated file.
00010 #
00011 # All configuration values have a default; values that are commented out
00012 # serve to show the default.
00013 
00014 import sys, os
00015 
00016 # If extensions (or modules to document with autodoc) are in another directory,
00017 # add these directories to sys.path here. If the directory is relative to the
00018 # documentation root, use os.path.abspath to make it absolute, like shown here.
00019 #sys.path.insert(0, os.path.abspath('.'))
00020 
00021 # -- General configuration -----------------------------------------------------
00022 
00023 # If your documentation needs a minimal Sphinx version, state it here.
00024 #needs_sphinx = '1.0'
00025 
00026 # Add any Sphinx extension module names here, as strings. They can be extensions
00027 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
00028 extensions = []
00029 
00030 # Add any paths that contain templates here, relative to this directory.
00031 templates_path = ['_templates']
00032 
00033 # The suffix of source filenames.
00034 source_suffix = '.rst'
00035 
00036 # The encoding of source files.
00037 #source_encoding = 'utf-8-sig'
00038 
00039 # The master toctree document.
00040 master_doc = 'index'
00041 
00042 # General information about the project.
00043 project = u'Boost.NumPy'
00044 copyright = u'2011, Stefan Seefeld'
00045 
00046 # The version info for the project you're documenting, acts as replacement for
00047 # |version| and |release|, also used in various other places throughout the
00048 # built documents.
00049 #
00050 # The short X.Y version.
00051 version = '1.0'
00052 # The full version, including alpha/beta/rc tags.
00053 release = '1.0'
00054 
00055 # The language for content autogenerated by Sphinx. Refer to documentation
00056 # for a list of supported languages.
00057 #language = None
00058 
00059 # There are two options for replacing |today|: either, you set today to some
00060 # non-false value, then it is used:
00061 #today = ''
00062 # Else, today_fmt is used as the format for a strftime call.
00063 #today_fmt = '%B %d, %Y'
00064 
00065 # List of patterns, relative to source directory, that match files and
00066 # directories to ignore when looking for source files.
00067 exclude_patterns = ['_build']
00068 
00069 # The reST default role (used for this markup: `text`) to use for all documents.
00070 #default_role = None
00071 
00072 # If true, '()' will be appended to :func: etc. cross-reference text.
00073 #add_function_parentheses = True
00074 
00075 # If true, the current module name will be prepended to all description
00076 # unit titles (such as .. function::).
00077 #add_module_names = True
00078 
00079 # If true, sectionauthor and moduleauthor directives will be shown in the
00080 # output. They are ignored by default.
00081 show_authors = False
00082 
00083 # The name of the Pygments (syntax highlighting) style to use.
00084 pygments_style = 'default'
00085 
00086 highlight_language = 'c++'
00087 
00088 # A list of ignored prefixes for module index sorting.
00089 #modindex_common_prefix = []
00090 
00091 
00092 # -- Options for HTML output ---------------------------------------------------
00093 
00094 # The theme to use for HTML and HTML Help pages.  See the documentation for
00095 # a list of builtin themes.
00096 html_theme = 'default'
00097 
00098 # Theme options are theme-specific and customize the look and feel of a theme
00099 # further.  For a list of options available for each theme, see the
00100 # documentation.
00101 #html_theme_options = {}
00102 
00103 # Add any paths that contain custom themes here, relative to this directory.
00104 #html_theme_path = []
00105 
00106 # The name for this set of Sphinx documents.  If None, it defaults to
00107 # "<project> v<release> documentation".
00108 #html_title = None
00109 
00110 # A shorter title for the navigation bar.  Default is the same as html_title.
00111 #html_short_title = None
00112 
00113 # The name of an image file (relative to this directory) to place at the top
00114 # of the sidebar.
00115 html_logo = '_static/boost.png'
00116 
00117 # The name of an image file (within the static path) to use as favicon of the
00118 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
00119 # pixels large.
00120 #html_favicon = None
00121 
00122 # Add any paths that contain custom static files (such as style sheets) here,
00123 # relative to this directory. They are copied after the builtin static files,
00124 # so a file named "default.css" will overwrite the builtin "default.css".
00125 html_static_path = ['_static']
00126 
00127 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
00128 # using the given strftime format.
00129 #html_last_updated_fmt = '%b %d, %Y'
00130 
00131 # If true, SmartyPants will be used to convert quotes and dashes to
00132 # typographically correct entities.
00133 #html_use_smartypants = True
00134 
00135 # Custom sidebar templates, maps document names to template names.
00136 #html_sidebars = {}
00137 
00138 # Additional templates that should be rendered to pages, maps page names to
00139 # template names.
00140 #html_additional_pages = {}
00141 
00142 # If false, no module index is generated.
00143 #html_domain_indices = True
00144 
00145 # If false, no index is generated.
00146 html_use_index = True
00147 
00148 # If true, the index is split into individual pages for each letter.
00149 #html_split_index = False
00150 
00151 # If true, links to the reST sources are added to the pages.
00152 #html_show_sourcelink = True
00153 
00154 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
00155 #html_show_sphinx = True
00156 
00157 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
00158 #html_show_copyright = True
00159 
00160 # If true, an OpenSearch description file will be output, and all pages will
00161 # contain a <link> tag referring to it.  The value of this option must be the
00162 # base URL from which the finished HTML is served.
00163 #html_use_opensearch = ''
00164 
00165 # This is the file name suffix for HTML files (e.g. ".xhtml").
00166 #html_file_suffix = None
00167 
00168 # Output file base name for HTML help builder.
00169 htmlhelp_basename = 'BoostNumPydoc'
00170 
00171 html_add_permalinks = False
00172 
00173 # -- Options for LaTeX output --------------------------------------------------
00174 
00175 # The paper size ('letter' or 'a4').
00176 #latex_paper_size = 'letter'
00177 
00178 # The font size ('10pt', '11pt' or '12pt').
00179 #latex_font_size = '10pt'
00180 
00181 # Grouping the document tree into LaTeX files. List of tuples
00182 # (source start file, target name, title, author, documentclass [howto/manual]).
00183 latex_documents = [
00184   ('index', 'BoostNumPy.tex', u'Boost.NumPy Documentation',
00185    u'Stefan Seefeld', 'manual'),
00186 ]
00187 
00188 # The name of an image file (relative to this directory) to place at the top of
00189 # the title page.
00190 #latex_logo = None
00191 
00192 # For "manual" documents, if this is true, then toplevel headings are parts,
00193 # not chapters.
00194 #latex_use_parts = False
00195 
00196 # If true, show page references after internal links.
00197 #latex_show_pagerefs = False
00198 
00199 # If true, show URL addresses after external links.
00200 #latex_show_urls = False
00201 
00202 # Additional stuff for the LaTeX preamble.
00203 #latex_preamble = ''
00204 
00205 # Documents to append as an appendix to all manuals.
00206 #latex_appendices = []
00207 
00208 # If false, no module index is generated.
00209 #latex_domain_indices = True
00210 
00211 
00212 # -- Options for manual page output --------------------------------------------
00213 
00214 # One entry per manual page. List of tuples
00215 # (source start file, name, description, authors, manual section).
00216 man_pages = [
00217     ('index', 'boostnumpy', u'Boost.NumPy Documentation',
00218      [u'Stefan Seefeld'], 1)
00219 ]


boost_numpy
Author(s): Jim Bosch, Ankit Daftery
autogenerated on Fri Aug 28 2015 10:10:40