Pep 8 work.

This commit is contained in:
John Evans 2013-06-04 16:12:19 -04:00
commit 4b07acc3e8
3 changed files with 26 additions and 24 deletions

View file

@ -3,7 +3,8 @@
# glymur documentation build configuration file, created by
# sphinx-quickstart on Sun May 26 11:29:54 2013.
#
# This file is execfile()d with the current directory set to its containing dir.
# This file is execfile()d with the current directory set to its containing
# dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
@ -11,7 +12,9 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys, os
import sys
import os
class Mock(object):
def __init__(self, *args, **kwargs):
@ -41,13 +44,13 @@ for mod_name in MOCK_MODULES:
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
# -- General configuration -----------------------------------------------------
# -- General configuration ----------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest',
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'numpydoc']
@ -91,7 +94,8 @@ release = '0.1.3p1'
# directories to ignore when looking for source files.
exclude_patterns = []
# The reST default role (used for this markup: `text`) to use for all documents.
# The reST default role (used for this markup: `text`) to use for all
# documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
@ -112,7 +116,7 @@ pygments_style = 'sphinx'
#modindex_common_prefix = []
# -- Options for HTML output ---------------------------------------------------
# -- Options for HTML output --------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
@ -192,9 +196,8 @@ html_show_sourcelink = True
htmlhelp_basename = 'glymurdoc'
# -- Options for LaTeX output --------------------------------------------------
# -- Options for LaTeX output -------------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
@ -203,14 +206,13 @@ latex_elements = {
# Additional stuff for the LaTeX preamble.
#'preamble': '',
}
latex_elements = {}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'glymur.tex', u'glymur Documentation',
u'John Evans', 'manual'),
]
# (source start file, target name, title, author, documentclass
# [howto/manual]).
latex_documents = [('index', 'glymur.tex', u'glymur Documentation',
u'John Evans', 'manual'), ]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
@ -233,7 +235,7 @@ latex_documents = [
#latex_domain_indices = True
# -- Options for manual page output --------------------------------------------
# -- Options for manual page output -------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
@ -246,16 +248,14 @@ man_pages = [
#man_show_urls = False
# -- Options for Texinfo output ------------------------------------------------
# -- Options for Texinfo output -----------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'glymur', u'glymur Documentation',
u'John Evans', 'glymur', 'One line description of project.',
'Miscellaneous'),
]
texinfo_documents = [('index', 'glymur', u'glymur Documentation',
u'John Evans', 'glymur',
'One line description of project.', 'Miscellaneous'), ]
# Documents to append as an appendix to all manuals.
#texinfo_appendices = []