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

46 lines
1.1 KiB
Python
Raw Normal View History

2015-09-09 00:35:47 +02:00
# -*- coding: utf-8 -*-
2017-04-11 18:37:01 +02:00
DESCRIPTION = (
'A wrapper library to read, manipulate and write data in ods format' +
''
)
2016-01-23 23:30:31 +01:00
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
]
2016-06-09 00:43:46 +02:00
intersphinx_mapping = {
2017-08-20 02:12:28 +02:00
'pyexcel': ('http://pyexcel.readthedocs.io/en/latest/', None),
2016-06-09 00:43:46 +02:00
}
2015-09-09 00:35:47 +02:00
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'pyexcel-ods'
2018-05-23 09:22:53 +02:00
copyright = u'2015-2018 Onni Software Ltd.'
2018-05-23 09:43:43 +02:00
version = '0.5.3'
2018-05-23 09:22:53 +02:00
release = '0.5.3'
2015-09-09 00:35:47 +02:00
exclude_patterns = []
pygments_style = 'sphinx'
html_theme = 'default'
html_static_path = ['_static']
htmlhelp_basename = 'pyexcel-odsdoc'
2016-06-09 00:43:46 +02:00
latex_elements = {}
2015-09-09 00:35:47 +02:00
latex_documents = [
2017-04-11 18:37:01 +02:00
('index', 'pyexcel-ods.tex',
'pyexcel-ods Documentation',
2016-06-09 00:43:46 +02:00
'Onni Software Ltd.', 'manual'),
2015-09-09 00:35:47 +02:00
]
man_pages = [
2017-04-11 18:37:01 +02:00
('index', 'pyexcel-ods',
'pyexcel-ods Documentation',
2015-09-09 00:35:47 +02:00
[u'Onni Software Ltd.'], 1)
]
texinfo_documents = [
2017-04-11 18:37:01 +02:00
('index', 'pyexcel-ods',
'pyexcel-ods Documentation',
'Onni Software Ltd.', 'pyexcel-ods',
DESCRIPTION,
2016-06-09 00:43:46 +02:00
'Miscellaneous'),
2015-09-09 00:35:47 +02:00
]