1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# -*- coding: utf-8 -*-
import sys
import os
sys.path.insert(0, os.path.abspath('../..'))
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode'] # 'sphinx.ext.intersphinx']
templates_path = ['_templates']
source_suffix = '.rst'
#source_encoding = 'utf-8-sig'
master_doc = 'index'
project = u'Reconfigure'
copyright = u'2013, Eugeny Pankov'
version = '1.0'
release = '1.0a1'
exclude_patterns = []
add_function_parentheses = True
#pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
# -- Options for HTML output ---------------------------------------------------
#html_theme = 'air'
#html_theme_options = {}
#html_theme_path = ['../../../sphinx-themes']
html_title = 'Reconfigure documentation'
html_short_title = 'Reconfigure docs'
#html_logo = None
#html_favicon = None
html_static_path = ['_static']
htmlhelp_basename = 'Reconfiguredoc'
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'http://docs.python.org/': None}
|