docs/conf.py
author Sergey Astanin <s.astanin@gmail.com>
Thu, 17 Feb 2011 22:25:22 +0100
changeset 181 c3cb22c01987
parent 180 bcc87f3710b5
permissions -rw-r--r--
Adjust indentation level in multiline docstrings

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

import sys
sys.path.insert(0, '..')
import opster

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

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

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

html_theme = 'cleanery'
html_theme_path = ['.']
html_title = "%s v%s" % (project, version)