2014-09-02 20:16:07 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import sphinx_rtd_theme
|
|
|
|
|
|
|
|
needs_sphinx = '1.0'
|
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'sphinx.ext.intersphinx',
|
|
|
|
'sphinx.ext.inheritance_diagram',
|
|
|
|
'sphinxcontrib.httpdomain',
|
|
|
|
]
|
|
|
|
templates_path = []
|
|
|
|
source_suffix = '.rst'
|
|
|
|
master_doc = 'index'
|
|
|
|
project = 'sprockets.clients.memcached'
|
2018-01-09 19:27:51 +00:00
|
|
|
copyright = '2014-2018, AWeber Communications'
|
2018-01-09 19:51:17 +00:00
|
|
|
version = '1.1.0'
|
|
|
|
release = '1.1'
|
2014-09-02 20:16:07 +00:00
|
|
|
exclude_patterns = []
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
2018-01-09 19:27:51 +00:00
|
|
|
intersphinx_mapping = {'python': ('https://docs.python.org/2/', None)}
|