when calling command from python set not supplied options to proper defaults
Earlier you would get full option spec (short, default, help) for every option,
not supplied as argument (or keyword argument) in function call.
# -*- 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'),
]