You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
660 B
Python
24 lines
660 B
Python
7 years ago
|
import sys
|
||
|
sys.path.append('..')
|
||
|
|
||
|
author = u'David Wilson'
|
||
|
copyright = u'2016, David Wilson'
|
||
|
exclude_patterns = ['_build']
|
||
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
|
||
|
html_show_sourcelink = False
|
||
|
html_show_sphinx = False
|
||
|
html_sidebars = {'**': ['globaltoc.html', 'github.html']}
|
||
|
html_static_path = ['_static']
|
||
|
html_theme = 'alabaster'
|
||
|
htmlhelp_basename = 'mitogendoc'
|
||
|
intersphinx_mapping = {'python': ('https://docs.python.org/2', None)}
|
||
|
language = None
|
||
|
master_doc = 'toc'
|
||
|
project = u'Mitogen'
|
||
|
pygments_style = 'sphinx'
|
||
|
release = u'master'
|
||
|
source_suffix = '.rst'
|
||
|
templates_path = ['_templates']
|
||
|
todo_include_todos = False
|
||
|
version = u'master'
|