docs/conf.py
author Alexander Solovyov <piranha@piranha.org.ua>
Mon, 13 Jul 2009 18:54:38 +0300
changeset 36 0cb832d5f1a9
parent 33 e82b3f5c36d9
child 75 2782b2406ba8
permissions -rw-r--r--
setup.py

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

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

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

extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'Finaloption'
copyright = u'2009, Alexander Solovyov'
version = release = finaloption.__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 = 'Finaloptiondoc'


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

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