debian-python-pyexcel-ods/docs/source/conf.py

46 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
DESCRIPTION = (
'A wrapper library to read, manipulate and write data in ods format' +
''
)
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
]
intersphinx_mapping = {
'pyexcel': ('http://pyexcel.readthedocs.io/en/latest/', None),
}
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'pyexcel-ods'
copyright = u'2015-2018 Onni Software Ltd.'
version = '0.5.3'
release = '0.5.3'
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'default'
html_static_path = ['_static']
htmlhelp_basename = 'pyexcel-odsdoc'
latex_elements = {}
latex_documents = [
('index', 'pyexcel-ods.tex',
'pyexcel-ods Documentation',
'Onni Software Ltd.', 'manual'),
]
man_pages = [
('index', 'pyexcel-ods',
'pyexcel-ods Documentation',
[u'Onni Software Ltd.'], 1)
]
texinfo_documents = [
('index', 'pyexcel-ods',
'pyexcel-ods Documentation',
'Onni Software Ltd.', 'pyexcel-ods',
DESCRIPTION,
'Miscellaneous'),
]