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 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# -*- coding: utf-8 -*-
#
# latexcodec documentation build configuration file, created by
# sphinx-quickstart on Wed Aug 3 15:45:22 2011.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.imgmath',
'sphinx.ext.viewcode']
source_suffix = '.rst'
master_doc = 'index'
project = 'latexcodec'
copyright = '2011-2014, Matthias C. M. Troffaes'
with open("../VERSION") as version_file:
release = version_file.read().strip()
version = '.'.join(release.split('.')[:2])
exclude_patterns = ['_build']
pygments_style = 'sphinx'
html_theme = 'default'
htmlhelp_basename = 'latexcodecdoc'
latex_documents = [
('index', 'latexcodec.tex',
'latexcodec Documentation',
'Matthias C. M. Troffaes', 'manual'),
]
man_pages = [
('index', 'latexcodec', 'latexcodec Documentation',
['Matthias C. M. Troffaes'], 1)
]
texinfo_documents = [
('index', 'latexcodec', 'latexcodec Documentation',
'Matthias C. M. Troffaes',
'latexcodec', 'One line description of project.', 'Miscellaneous'),
]
intersphinx_mapping = {
'python': ('http://docs.python.org/', None),
}
|