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
|
# -*- coding: utf-8 -*-
#pylint: disable-all
#@PydevCodeAnalysisIgnore
import sys
import os.path
sys.path.append(os.path.abspath('..'))
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx' ]
intersphinx_mapping = {'python': ('http://docs.python.org/3/',
'../debian/python.inv')}
templates_path = ['_templates']
source_suffix = '.rst'
source_encoding = 'utf-8'
master_doc = 'index'
nitpicky = True
project = u'Dugong'
copyright = u'2013-2014, Nikolaus Rath'
default_role = 'py:obj'
primary_domain = 'py'
add_module_names = False
autodoc_member_order = 'groupwise'
pygments_style = 'sphinx'
highlight_language = 'python'
html_theme = 'default'
html_use_modindex = False
html_use_index = True
html_split_index = False
html_show_sourcelink = False
|