docs/conf.py
author Alexander Solovyov <alexander@solovyov.net>
Wed, 26 Jan 2011 19:46:19 +0100
changeset 175 1c983a38fdbc
parent 173 c96a3a22fdae
child 179 038e81e5332c
permissions -rw-r--r--
a bit of updates to docs

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

import sys
sys.path.insert(0, '..')
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-2011, Alexander Solovyov'
version = release = opster.__version__
exclude_trees = ['_build']
pygments_style = 'sphinx'


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

html_theme = 'default'
html_style = 'cleanery.css'
html_theme_options = {'nosidebar': True}
html_title = "%s v%s" % (project, version)
html_static_path = ['_static']
html_use_smartypants = True
html_use_index = False
html_show_sourcelink = False