1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
import sys, os
extensions = []
templates_path = []
source_suffix = '.rst'
master_doc = 'index'
project = u'django-notification'
package = 'notification'
copyright_holder = 'Eldarion'
copyright = u'2013, %s' % copyright_holder
exclude_patterns = ['_build']
pygments_style = 'sphinx'
html_theme = 'default'
htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index', '%s.tex' % project, u'%s Documentation' % project,
copyright_holder, 'manual'),
]
man_pages = [
('index', project, u'%s Documentation' % project,
[copyright_holder], 1)
]
sys.path.insert(0, os.pardir)
m = __import__(package)
version = m.__version__
release = version
|