1
0
Fork 0
forked from github/pelican
pelican-theme/docs/conf.py

46 lines
1.3 KiB
Python
Raw Permalink Normal View History

2010-10-13 23:08:08 +01:00
# -*- coding: utf-8 -*-
import sys, os
# -- General configuration -----------------------------------------------------
templates_path = ['_templates']
2011-01-05 16:23:44 +01:00
extensions = ['sphinx.ext.autodoc',]
2010-10-13 23:08:08 +01:00
source_suffix = '.rst'
master_doc = 'index'
project = u'Pelican'
2011-01-05 16:23:44 +01:00
copyright = u'2010, Alexis Metaireau and contributors'
2010-10-13 23:08:08 +01:00
exclude_patterns = ['_build']
2011-01-06 02:37:37 +01:00
version = "2"
release = version
2010-10-13 23:08:08 +01:00
# -- Options for HTML output ---------------------------------------------------
sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes']
2011-04-26 00:34:03 +01:00
html_theme = 'pelican'
2010-10-13 23:08:08 +01:00
2010-10-29 02:30:51 +01:00
html_theme_options = {
2011-04-26 00:34:03 +01:00
'nosidebar': True,
'index_logo': 'pelican.png',
'github_fork': 'ametaireau/pelican',
2010-10-29 02:30:51 +01:00
}
2010-10-13 23:08:08 +01:00
html_static_path = ['_static']
# Output file base name for HTML help builder.
htmlhelp_basename = 'Pelicandoc'
2010-10-13 23:08:08 +01:00
# -- Options for LaTeX output --------------------------------------------------
latex_documents = [
('index', 'Pelican.tex', u'Pelican Documentation',
2010-10-13 23:08:08 +01:00
u'Alexis Métaireau', 'manual'),
]
# -- Options for manual page output --------------------------------------------
man_pages = [
('index', 'pelican', u'pelican documentation',
2011-05-22 18:57:02 +02:00
[u'Alexis Métaireau'], 1),
('pelican-themes', 'pelican-themes', u'A theme manager for Pelican',
[u'Mickaël Raybaud'], 1),
('themes', 'pelican-theming', u'How to create themes for Pelican',
[u'The Pelican contributors'], 1)
2010-10-13 23:08:08 +01:00
]