diff options
author | Dana Powers <dana.powers@gmail.com> | 2015-02-10 16:24:42 -0800 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2015-02-10 16:24:42 -0800 |
commit | e94fd220923e3b24f27636cc8bb4f39ab89dcb73 (patch) | |
tree | 798067f941495afce28e350651fa8b91cb560682 /docs/conf.py | |
parent | 2a12fed46fa91f3a7f671cf35a9a4660366e5289 (diff) | |
parent | 70b3af1b3c742973609151f408b60ebb8aff5701 (diff) | |
download | kafka-python-e94fd220923e3b24f27636cc8bb4f39ab89dcb73.tar.gz |
Merge pull request #316 from sontek/add_docs_to_tox
Allow better usage of docs locally.
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 9e95f79..ea223c2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,6 +30,7 @@ import os # ones. extensions = [ 'sphinx.ext.autodoc', + 'sphinx.ext.intersphinx', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon', ] @@ -57,7 +58,7 @@ copyright = u'2015, David Arthur' # The short X.Y version. with open('../VERSION') as version_file: version = version_file.read() - + # The full version, including alpha/beta/rc tags. release = version @@ -262,3 +263,10 @@ texinfo_documents = [ # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False + +on_rtd = os.environ.get('READTHEDOCS', None) == 'True' + +if not on_rtd: # only import and set the theme if we're building docs locally + import sphinx_rtd_theme + html_theme = 'sphinx_rtd_theme' + html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] |