forked from pandreetto/cream-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
31 lines (31 loc) · 868 Bytes
/
conf.py
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
import sys
import os
extensions = []
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
project = u'CREAM_Guide'
copyright = u'2017, Paolo Andreetto'
author = u'Paolo Andreetto'
version = u'0.1'
release = u'0.1'
language = None
exclude_patterns = ['_build']
pygments_style = 'sphinx'
todo_include_todos = False
html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_show_sourcelink = False
htmlhelp_basename = 'CREAM_Guidedoc'
latex_elements = {}
latex_documents = [
(master_doc, 'CREAM_Guide.tex', u'CREAM_Guide Documentation', u'Paolo Andreetto', 'manual'),
]
man_pages = [
(master_doc, 'cream_guide', u'CREAM_Guide Documentation', [author], 1)
]
texinfo_documents = [
(master_doc, 'CREAM_Guide', u'CREAM_Guide Documentation',
author, 'CREAM_Guide', 'One line description of project.',
'Miscellaneous'),
]