sprockets-status/docs/conf.py

19 lines
529 B
Python
Raw Permalink Normal View History

2017-02-20 01:26:53 +00:00
import sprockets_status
project = 'sprockets-status'
copyright = 'AWeber Communications, Inc.'
version = sprockets_status.version
release = '.'.join(str(v) for v in sprockets_status.version_info[:2])
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
master_doc = 'index'
source_suffix = '.rst'
html_sidebars = {'**': ['about.html', 'navigation.html']}
2017-02-20 01:26:53 +00:00
html_static_path = ['.']
intersphinx_mapping = {
'python': ('http://docs.python.org/3/', None),
'tornado': ('http://tornadoweb.org/en/stable/', None),
}