docs/conf.py
author Alexander Solovyov <piranha@piranha.org.ua>
Wed, 02 Sep 2009 12:50:52 +0300
changeset 80 eacc0c57f0e6
parent 75 2782b2406ba8
child 142 56f290eb8f55
permissions -rw-r--r--
Added tag 0.9.8 for changeset cc24c392fd45

# -*- coding: utf-8 -*-

import sys, os
sys.path.append('..')
import opster

# -- General configuration -----------------------------------------------------

extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'Opster'
copyright = u'2009, Alexander Solovyov'
version = release = opster.__version__
exclude_trees = ['_build']
pygments_style = 'sphinx'


# -- Options for HTML output ---------------------------------------------------

html_theme = 'default'
# "<project> v<release> documentation".
#html_title = None
# A shorter title for the navigation bar.  Default is the same as html_title.
#html_short_title = None

#html_logo = None
#html_favicon = None
html_static_path = ['_static']
html_use_smartypants = True
htmlhelp_basename = 'Opsterdoc'


# -- Options for LaTeX output --------------------------------------------------

latex_documents = [
  ('index', 'Opster.tex', u'Opster Documentation',
   u'Alexander Solovyov', 'manual'),
]