powerline/docs/source/conf.py

20 lines
459 B
Python
Raw Normal View History

2012-12-13 15:43:05 +01:00
# -*- coding: utf-8 -*-
# vim:fenc=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
2013-02-08 17:32:23 +01:00
sys.path.insert(0, os.path.abspath('../..'))
2012-12-13 15:43:05 +01:00
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.viewcode']
source_suffix = '.rst'
master_doc = 'index'
project = u'Powerline'
copyright = u'Kim Silkebækken'
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'
2013-02-08 17:32:23 +01:00
html_theme = 'default'
2012-12-13 15:43:05 +01:00
html_static_path = ['_static']