File: conf.py

package info (click to toggle)
python-webob 1.1.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 988 kB
  • sloc: python: 10,636; makefile: 43
file content (37 lines) | stat: -rw-r--r-- 965 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-

# http://sphinx.pocoo.org/config.html#build-config

extensions = ['sphinx.ext.autodoc']

source_suffix = '.txt' # The suffix of source filenames.
master_doc = 'index' # The master toctree document.

project = 'WebOb'
copyright = '2011, Ian Bicking and contributors'
version = release = '1.1.1'
exclude_patterns = ['jsonrpc-example-code/*']

modindex_common_prefix = ['webob.']

# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True

# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True


# html_favicon = ...
html_add_permalinks = False
#html_show_sourcelink = True # ?set to False?

# Content template for the index page.
#html_index = ''

# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}

# Output file base name for HTML help builder.
htmlhelp_basename = 'WebObdoc'