powerline/docs/source/conf.py

30 lines
825 B
Python
Raw Normal View History

# vim:fileencoding=utf-8:noet
2012-12-13 15:43:05 +01:00
2013-02-08 17:32:23 +01:00
import os
import sys
2012-12-13 15:43:05 +01:00
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(os.getcwd()))))
sys.path.insert(0, os.path.abspath(os.getcwd()))
2012-12-13 15:43:05 +01:00
extensions = ['powerline_autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.viewcode']
2012-12-13 15:43:05 +01:00
source_suffix = '.rst'
master_doc = 'index'
project = u'Powerline'
2012-12-17 15:24:42 +01:00
version = 'beta'
release = 'beta'
2012-12-13 15:43:05 +01:00
exclude_patterns = ['_build']
pygments_style = 'sphinx'
2014-01-25 16:20:06 +01:00
html_theme = 'sphinx_rtd_theme'
2012-12-13 15:43:05 +01:00
html_static_path = ['_static']
2014-01-25 16:20:06 +01:00
html_show_copyright = 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
try:
import sphinx_rtd_theme
html_theme = 'sphinx_rtd_theme'
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
except ImportError:
pass