mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 11:19:26 +00:00
26 lines
658 B
Python
26 lines
658 B
Python
import sprockets.http
|
|
|
|
project = 'sprockets.http'
|
|
copyright = 'AWeber Communications, Inc.'
|
|
version = sprockets.http.__version__
|
|
release = '.'.join(str(v) for v in sprockets.http.version_info[0:2])
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.intersphinx',
|
|
'sphinx.ext.viewcode'
|
|
]
|
|
|
|
master_doc = 'index'
|
|
html_theme_options = {
|
|
'github_user': 'sprockets',
|
|
'github_repo': 'sprockets.http',
|
|
'description': 'Tornado application runner',
|
|
'github_banner': True,
|
|
}
|
|
html_static_path = ['_static']
|
|
|
|
intersphinx_mapping = {
|
|
'python': ('http://docs.python.org/3/', None),
|
|
'tornado': ('http://tornadoweb.org/en/latest/', None),
|
|
}
|