mitogen/docs/conf.py

24 lines
662 B
Python
Raw Normal View History

2016-08-11 17:16:45 +00:00
import sys
2016-08-14 11:44:29 +00:00
sys.path.append('..')
2016-08-11 17:16:45 +00:00
author = u'David Wilson'
2016-08-12 17:45:26 +00:00
copyright = u'2016, David Wilson'
2016-08-11 17:16:45 +00:00
exclude_patterns = ['_build']
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
2016-08-12 17:45:26 +00:00
html_show_sourcelink = False
html_show_sphinx = False
2016-08-14 10:44:16 +00:00
html_sidebars = {'**': ['globaltoc.html', 'github.html']}
2016-08-11 17:16:45 +00:00
html_static_path = ['_static']
2016-08-12 17:45:26 +00:00
html_theme = 'alabaster'
2016-08-11 17:16:45 +00:00
htmlhelp_basename = 'econtextdoc'
intersphinx_mapping = {'python': ('https://docs.python.org/2', None)}
2016-08-12 17:45:26 +00:00
language = None
master_doc = 'toc'
2016-08-12 17:45:26 +00:00
project = u'econtext'
pygments_style = 'sphinx'
release = u'master'
source_suffix = '.rst'
templates_path = ['_templates']
todo_include_todos = False
version = u'master'