Home | History | Annotate | Download | only in docs
      1 # -*- coding: utf-8 -*-
      2 import pkg_resources
      3 
      4 version = release = pkg_resources.get_distribution('webob').version
      5 
      6 extensions = ['sphinx.ext.autodoc']
      7 
      8 source_suffix = '.txt' # The suffix of source filenames.
      9 master_doc = 'index' # The master toctree document.
     10 
     11 project = 'WebOb'
     12 copyright = '2011, Ian Bicking and contributors'
     13 exclude_patterns = ['jsonrpc-example-code/*']
     14 
     15 modindex_common_prefix = ['webob.']
     16 
     17 # If true, '()' will be appended to :func: etc. cross-reference text.
     18 #add_function_parentheses = True
     19 
     20 # If true, the current module name will be prepended to all description
     21 # unit titles (such as .. function::).
     22 #add_module_names = True
     23 
     24 
     25 # html_favicon = ...
     26 html_add_permalinks = "False"
     27 #html_show_sourcelink = True # ?set to False?
     28 
     29 # Content template for the index page.
     30 #html_index = ''
     31 
     32 # Custom sidebar templates, maps document names to template names.
     33 #html_sidebars = {}
     34 
     35 # Output file base name for HTML help builder.
     36 htmlhelp_basename = 'WebObdoc'
     37 
     38