mirror of
https://github.com/sprockets/sprockets.clients.statsd.git
synced 2024-11-14 19:29:30 +00:00
Remove docs
This commit is contained in:
parent
32e1f6e000
commit
25394f02a9
1 changed files with 6 additions and 11 deletions
17
docs/conf.py
17
docs/conf.py
|
@ -1,7 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
import sphinx_rtd_theme
|
||||
|
||||
from sprockets.clients.statsd import version_info, __version__
|
||||
from sprockets.clients.statsd import __version__
|
||||
|
||||
needs_sphinx = '1.0'
|
||||
extensions = [
|
||||
|
@ -9,21 +7,18 @@ extensions = [
|
|||
'sphinx.ext.intersphinx',
|
||||
'sphinxcontrib.httpdomain',
|
||||
]
|
||||
|
||||
release = __version__
|
||||
version = '.'.join(release.split('.')[0:1])
|
||||
|
||||
templates_path = []
|
||||
source_suffix = '.rst'
|
||||
master_doc = 'index'
|
||||
project = 'sprockets.clients.statsd'
|
||||
copyright = '2014, AWeber Communications'
|
||||
version = '.'.join(__version__.split('.')[0:1])
|
||||
release = __version__
|
||||
if len(version_info) > 3:
|
||||
release += '-{0}'.format(str(v) for v in version_info[3:])
|
||||
exclude_patterns = []
|
||||
pygments_style = 'sphinx'
|
||||
html_theme = 'sphinx_rtd_theme'
|
||||
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
||||
intersphinx_mapping = {
|
||||
'python': ('https://docs.python.org/', None),
|
||||
'requests': ('https://requests.readthedocs.org/en/latest/', None),
|
||||
'sprockets': ('https://sprockets.readthedocs.org/en/latest/', None),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue