]> SALOME platform Git repositories - modules/hexablock.git/blob - doc/conf.py.in
Salome HOME
Detect sphinx theme directly in conf.py.in file
[modules/hexablock.git] / doc / conf.py.in
1 # -*- coding: utf-8 -*-
2 #
3 # HexaBlock documentation build configuration file, created by
4 # sphinx-quickstart on Fri Nov 19 14:09:24 2010.
5 #
6 # This file is execfile()d with the current directory set to its containing dir.
7 #
8 # The contents of this file are pickled, so don't put values in the namespace
9 # that aren't pickleable (module imports are okay, they're removed automatically).
10 #
11 # All configuration values have a default; values that are commented out
12 # serve to show the default.
13
14 import sys, os
15 import sphinx
16
17 # If your extensions are in another directory, add it here. If the directory
18 # is relative to the documentation root, use os.path.abspath to make it
19 # absolute, like shown here.
20 sys.path.append(os.path.abspath('.'))
21 #sys.path.append(os.path.abspath('sphinxext'))
22
23 # General configuration
24 # ---------------------
25
26 # Add any Sphinx extension module names here, as strings. They can be extensions
27 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
28 extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
29
30 # extensions = ['matplotlib.sphinxext.mathmpl',
31 #              'matplotlib.sphinxext.only_directives',
32 #              'matplotlib.sphinxext.plot_directive',
33 #              'sphinx.ext.autodoc',
34 #              'sphinx.ext.doctest',
35 #              'ipython_console_highlighting',
36 #              'inheritance_diagram',
37 #              'numpydoc']
38
39 # Add any paths that contain templates here, relative to this directory.
40 templates_path = ['_templates']
41
42 # The suffix of source filenames.
43 source_suffix = '.rst'
44
45 # The encoding of source files.
46 #source_encoding = 'utf-8'
47
48 # The master toctree document.
49 master_doc = 'index'
50
51 # General information about the project.
52 project = u'HexaBlock'
53 copyright = u'2009-2017  CEA/DEN, EDF R&D'
54
55 # The version info for the project you're documenting, acts as replacement for
56 # |version| and |release|, also used in various other places throughout the
57 # built documents.
58 #
59 # The short X.Y version.
60 version = '@SALOMEHEXABLOCK_VERSION@'
61 # The full version, including alpha/beta/rc tags.
62 release = '@SALOMEHEXABLOCK_VERSION@'
63
64 # The language for content autogenerated by Sphinx. Refer to documentation
65 # for a list of supported languages.
66 #language = None
67
68 # There are two options for replacing |today|: either, you set today to some
69 # non-false value, then it is used:
70 #today = ''
71 # Else, today_fmt is used as the format for a strftime call.
72 #today_fmt = '%B %d, %Y'
73
74 # List of documents that shouldn't be included in the build.
75 #unused_docs = []
76
77 # List of directories, relative to source directory, that shouldn't be searched
78 # for source files.
79 exclude_trees = []
80
81 # A list of glob-style patterns that should be excluded when looking for source
82 # files. They are matched against the source file names relative to the
83 # source directory, using slashes as directory separators on all platforms.
84 exclude_patterns = ['**/CVS']
85
86 # The reST default role (used for this markup: `text`) to use for all documents.
87 #default_role = None
88
89 # If true, '()' will be appended to :func: etc. cross-reference text.
90 #add_function_parentheses = True
91
92 # If true, the current module name will be prepended to all description
93 # unit titles (such as .. function::).
94 #add_module_names = True
95
96 # If true, sectionauthor and moduleauthor directives will be shown in the
97 # output. They are ignored by default.
98 #show_authors = False
99
100 # The name of the Pygments (syntax highlighting) style to use.
101 pygments_style = 'sphinx'
102
103
104 # Options for HTML output
105 # -----------------------
106
107 # The theme to use for HTML and HTML Help pages.  Major themes that come with
108 # Sphinx are currently 'default' and 'sphinxdoc'.
109 html_theme = 'default' if sphinx.version_info[:2] < (1,3) else 'classic'
110
111 # The style sheet to use for HTML and HTML Help pages. A file of that name
112 # must exist either in Sphinx' static/ path, or in one of the custom paths
113 # given in html_static_path.
114 #html_style = 'default.css'
115
116 # The name for this set of Sphinx documents.  If None, it defaults to
117 # "<project> v<release> documentation".
118 #html_title = None
119
120 # A shorter title for the navigation bar.  Default is the same as html_title.
121 #html_short_title = None
122
123 # The name of an image file (relative to this directory) to place at the top
124 # of the sidebar.
125 #html_logo = None
126
127 # The name of an image file (within the static path) to use as favicon of the
128 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
129 # pixels large.
130 #html_favicon = None
131
132 # Add any paths that contain custom static files (such as style sheets) here,
133 # relative to this directory. They are copied after the builtin static files,
134 # so a file named "default.css" will overwrite the builtin "default.css".
135 html_static_path = ['@CMAKE_CURRENT_SOURCE_DIR@/_static']
136
137 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
138 # using the given strftime format.
139 #html_last_updated_fmt = '%b %d, %Y'
140
141 # If true, SmartyPants will be used to convert quotes and dashes to
142 # typographically correct entities.
143 #html_use_smartypants = True
144
145 # Custom sidebar templates, maps document names to template names.
146 #html_sidebars = {}
147
148 # Additional templates that should be rendered to pages, maps page names to
149 # template names.
150 #html_additional_pages = {}
151
152 # If false, no module index is generated.
153 #html_use_modindex = True
154
155 # If false, no index is generated.
156 #html_use_index = True
157
158 # If true, the index is split into individual pages for each letter.
159 #html_split_index = False
160
161 # If true, the reST sources are included in the HTML build as _sources/<name>.
162 #html_copy_source = True
163
164 # If true, an OpenSearch description file will be output, and all pages will
165 # contain a <link> tag referring to it.  The value of this option must be the
166 # base URL from which the finished HTML is served.
167 #html_use_opensearch = ''
168
169 # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
170 #html_file_suffix = ''
171
172 # Output file base name for HTML help builder.
173 htmlhelp_basename = 'HexaBlockdoc'
174
175
176 # Options for LaTeX output
177 # ------------------------
178
179 # The paper size ('letter' or 'a4').
180 #latex_paper_size = 'letter'
181
182 # The font size ('10pt', '11pt' or '12pt').
183 #latex_font_size = '10pt'
184
185 # Grouping the document tree into LaTeX files. List of tuples
186 # (source start file, target name, title, author, document class [howto/manual]).
187 latex_documents = [
188   ('index', 'HexaBlock.tex', ur'HexaBlock Documentation',
189    ur'CS', 'manual'),
190 ]
191
192 # The name of an image file (relative to this directory) to place at the top of
193 # the title page.
194 #latex_logo = None
195
196 # For "manual" documents, if this is true, then toplevel headings are parts,
197 # not chapters.
198 #latex_use_parts = False
199
200 # Additional stuff for the LaTeX preamble.
201 #latex_preamble = ''
202
203 # Documents to append as an appendix to all manuals.
204 #latex_appendices = []
205
206 # If false, no module index is generated.
207 #latex_use_modindex = True