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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# -*- coding: utf-8 -*-
from datetime import datetime
extensions = []
templates_path = ['_templates']
source_suffix = '.rst'
master_doc = 'index'
todo_include_todos = False
# General information about the project.
project = u'celcatsanitizer'
year = datetime.now().year
copyright = u'%d, Alban Gruin' % year
author = u'Alban Gruin'
version = u'0.14'
release = u'0.14.4-2'
language = 'fr'
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = 'sphinx'
html_theme = 'alabaster'
html_sidebars = {
'**': [
'about.html',
'navigation.html',
]
}
html_theme_options = {
'description': "Un outil pour reformater les emplois du temps de Celcat",
'extra_nav_links': {"Sources":
"https://git.pa1ch.fr/alban/celcatsanitizer"},
}
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'celcatsanitizerdoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = {
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',
# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'celcatsanitizer.tex', u'celcatsanitizer Documentation',
u'Alban Gruin', 'manual'),
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'celcatsanitizer', u'celcatsanitizer Documentation',
[author], 1)
]
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'celcatsanitizer', u'celcatsanitizer Documentation',
author, 'celcatsanitizer', 'One line description of project.',
'Miscellaneous'),
]
|