PageRenderTime 46ms CodeModel.GetById 23ms app.highlight 18ms RepoModel.GetById 1ms app.codeStats 1ms

/docs/conf.py

https://bitbucket.org/gawel/shabti
Python | 190 lines | 18 code | 48 blank | 124 comment | 0 complexity | af0e1cea7d021dc63916323ec1c8e961 MD5 | raw file
  1# -*- coding: utf-8 -*-
  2#
  3# Shabti documentation build configuration file, created by
  4# sphinx-quickstart on Sat Jan 31 00:41:00 2009.
  5#
  6# This file is execfile()d with the current directory set to its containing dir.
  7#
  8# The contents of this file are pickled, so don't put values in the namespace
  9# that aren't pickleable (module imports are okay, they're removed automatically).
 10#
 11# Note that not all possible configuration values are present in this
 12# autogenerated file.
 13#
 14# All configuration values have a default; values that are commented out
 15# serve to show the default.
 16
 17import sys, os
 18
 19# If your extensions are in another directory, add it here. If the directory
 20# is relative to the documentation root, use os.path.abspath to make it
 21# absolute, like shown here.
 22#sys.path.append(os.path.abspath('.'))
 23
 24# General configuration
 25# ---------------------
 26
 27# Add any Sphinx extension module names here, as strings. They can be extensions
 28# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
 29extensions = ['sphinx.ext.autodoc']
 30
 31# Add any paths that contain templates here, relative to this directory.
 32templates_path = ['_templates']
 33
 34# The suffix of source filenames.
 35source_suffix = '.rst'
 36
 37# The encoding of source files.
 38#source_encoding = 'utf-8'
 39
 40# The master toctree document.
 41master_doc = 'index'
 42
 43# General information about the project.
 44project = u'Shabti'
 45copyright = u'2009, Graham Higgins'
 46
 47# The version info for the project you're documenting, acts as replacement for
 48# |version| and |release|, also used in various other places throughout the
 49# built documents.
 50#
 51# The short X.Y version.
 52version = '0.3'
 53# The full version, including alpha/beta/rc tags.
 54release = '0.3'
 55
 56# The language for content autogenerated by Sphinx. Refer to documentation
 57# for a list of supported languages.
 58#language = None
 59
 60# There are two options for replacing |today|: either, you set today to some
 61# non-false value, then it is used:
 62#today = ''
 63# Else, today_fmt is used as the format for a strftime call.
 64#today_fmt = '%B %d, %Y'
 65
 66# List of documents that shouldn't be included in the build.
 67#unused_docs = []
 68
 69# List of directories, relative to source directory, that shouldn't be searched
 70# for source files.
 71exclude_trees = ['_build', 'formbuild']
 72
 73# The reST default role (used for this markup: `text`) to use for all documents.
 74#default_role = None
 75
 76# If true, '()' will be appended to :func: etc. cross-reference text.
 77#add_function_parentheses = True
 78
 79# If true, the current module name will be prepended to all description
 80# unit titles (such as .. function::).
 81#add_module_names = True
 82
 83# If true, sectionauthor and moduleauthor directives will be shown in the
 84# output. They are ignored by default.
 85#show_authors = False
 86
 87# The name of the Pygments (syntax highlighting) style to use.
 88pygments_style = 'sphinx'
 89
 90
 91# Options for HTML output
 92# -----------------------
 93
 94# The style sheet to use for HTML and HTML Help pages. A file of that name
 95# must exist either in Sphinx' static/ path, or in one of the custom paths
 96# given in html_static_path.
 97html_style = 'default.css'
 98
 99# The name for this set of Sphinx documents.  If None, it defaults to
100# "<project> v<release> documentation".
101#html_title = None
102
103# A shorter title for the navigation bar.  Default is the same as html_title.
104#html_short_title = None
105
106# The name of an image file (relative to this directory) to place at the top
107# of the sidebar.
108#html_logo = None
109
110# The name of an image file (within the static path) to use as favicon of the
111# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
112# pixels large.
113#html_favicon = None
114
115# Add any paths that contain custom static files (such as style sheets) here,
116# relative to this directory. They are copied after the builtin static files,
117# so a file named "default.css" will overwrite the builtin "default.css".
118html_static_path = ['_static']
119
120# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
121# using the given strftime format.
122#html_last_updated_fmt = '%b %d, %Y'
123
124# If true, SmartyPants will be used to convert quotes and dashes to
125# typographically correct entities.
126#html_use_smartypants = True
127
128# Custom sidebar templates, maps document names to template names.
129#html_sidebars = {}
130
131# Additional templates that should be rendered to pages, maps page names to
132# template names.
133#html_additional_pages = {}
134
135# If false, no module index is generated.
136#html_use_modindex = True
137
138# If false, no index is generated.
139#html_use_index = True
140
141# If true, the index is split into individual pages for each letter.
142#html_split_index = False
143
144# If true, links to the reST sources are added to the pages.
145#html_show_sourcelink = True
146
147# If true, an OpenSearch description file will be output, and all pages will
148# contain a <link> tag referring to it.  The value of this option must be the
149# base URL from which the finished HTML is served.
150#html_use_opensearch = ''
151
152# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
153#html_file_suffix = ''
154
155# Output file base name for HTML help builder.
156htmlhelp_basename = 'Shabtidoc'
157
158
159# Options for LaTeX output
160# ------------------------
161
162# The paper size ('letter' or 'a4').
163#latex_paper_size = 'letter'
164
165# The font size ('10pt', '11pt' or '12pt').
166#latex_font_size = '10pt'
167
168# Grouping the document tree into LaTeX files. List of tuples
169# (source start file, target name, title, author, document class [howto/manual]).
170latex_documents = [
171  ('index', 'Shabti.tex', ur'Shabti Documentation',
172   ur'Graham Higgins', 'manual'),
173]
174
175# The name of an image file (relative to this directory) to place at the top of
176# the title page.
177#latex_logo = None
178
179# For "manual" documents, if this is true, then toplevel headings are parts,
180# not chapters.
181#latex_use_parts = False
182
183# Additional stuff for the LaTeX preamble.
184#latex_preamble = ''
185
186# Documents to append as an appendix to all manuals.
187#latex_appendices = []
188
189# If false, no module index is generated.
190#latex_use_modindex = True