Statistiques
| Branche: | Révision :

root / doc / conf.py @ ed74d101

Historique | Voir | Annoter | Télécharger (7,82 ko)

1 68670b96 Florent Chuffart
# -*- coding: utf-8 -*-
2 68670b96 Florent Chuffart
#
3 68670b96 Florent Chuffart
# mylabstocks documentation build configuration file, created by
4 68670b96 Florent Chuffart
# sphinx-quickstart on Thu Dec 13 16:44:18 2012.
5 68670b96 Florent Chuffart
#
6 68670b96 Florent Chuffart
# This file is execfile()d with the current directory set to its containing dir.
7 68670b96 Florent Chuffart
#
8 68670b96 Florent Chuffart
# Note that not all possible configuration values are present in this
9 68670b96 Florent Chuffart
# autogenerated file.
10 68670b96 Florent Chuffart
#
11 68670b96 Florent Chuffart
# All configuration values have a default; values that are commented out
12 68670b96 Florent Chuffart
# serve to show the default.
13 68670b96 Florent Chuffart
14 68670b96 Florent Chuffart
import sys, os
15 68670b96 Florent Chuffart
16 68670b96 Florent Chuffart
# If extensions (or modules to document with autodoc) are in another directory,
17 68670b96 Florent Chuffart
# add these directories to sys.path here. If the directory is relative to the
18 68670b96 Florent Chuffart
# documentation root, use os.path.abspath to make it absolute, like shown here.
19 68670b96 Florent Chuffart
#sys.path.insert(0, os.path.abspath('.'))
20 68670b96 Florent Chuffart
sys.path.insert(0, os.path.abspath('../../src/'))
21 68670b96 Florent Chuffart
22 68670b96 Florent Chuffart
# -- General configuration -----------------------------------------------------
23 68670b96 Florent Chuffart
24 68670b96 Florent Chuffart
# If your documentation needs a minimal Sphinx version, state it here.
25 68670b96 Florent Chuffart
#needs_sphinx = '1.0'
26 68670b96 Florent Chuffart
27 68670b96 Florent Chuffart
# Add any Sphinx extension module names here, as strings. They can be extensions
28 68670b96 Florent Chuffart
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
29 68670b96 Florent Chuffart
# extensions = []
30 68670b96 Florent Chuffart
extensions = ['sphinx.ext.autodoc']#, 'sphinx.ext.doctest']# , 'sphinx.ext.coverage', 'sphinx.ext.inheritance_diagram']
31 68670b96 Florent Chuffart
32 68670b96 Florent Chuffart
# Add any paths that contain templates here, relative to this directory.
33 68670b96 Florent Chuffart
templates_path = ['_templates']
34 68670b96 Florent Chuffart
35 68670b96 Florent Chuffart
# The suffix of source filenames.
36 68670b96 Florent Chuffart
source_suffix = '.rst'
37 68670b96 Florent Chuffart
38 68670b96 Florent Chuffart
# The encoding of source files.
39 68670b96 Florent Chuffart
#source_encoding = 'utf-8-sig'
40 68670b96 Florent Chuffart
41 68670b96 Florent Chuffart
# The master toctree document.
42 68670b96 Florent Chuffart
master_doc = 'index'
43 68670b96 Florent Chuffart
44 68670b96 Florent Chuffart
# General information about the project.
45 68670b96 Florent Chuffart
project = u'MyLabStocks'
46 68670b96 Florent Chuffart
copyright = u' since 2007, Florent CHUFFART, Gael YVERT'
47 68670b96 Florent Chuffart
48 68670b96 Florent Chuffart
# The version info for the project you're documenting, acts as replacement for
49 68670b96 Florent Chuffart
# |version| and |release|, also used in various other places throughout the
50 68670b96 Florent Chuffart
# built documents.
51 68670b96 Florent Chuffart
#
52 68670b96 Florent Chuffart
# The short X.Y version.
53 ed74d101 Florent Chuffart
version = '0.1.18'
54 68670b96 Florent Chuffart
# The full version, including alpha/beta/rc tags.
55 ed74d101 Florent Chuffart
release = '0.1.18'
56 68670b96 Florent Chuffart
57 68670b96 Florent Chuffart
# The language for content autogenerated by Sphinx. Refer to documentation
58 68670b96 Florent Chuffart
# for a list of supported languages.
59 68670b96 Florent Chuffart
#language = None
60 68670b96 Florent Chuffart
61 68670b96 Florent Chuffart
# There are two options for replacing |today|: either, you set today to some
62 68670b96 Florent Chuffart
# non-false value, then it is used:
63 68670b96 Florent Chuffart
#today = ''
64 68670b96 Florent Chuffart
# Else, today_fmt is used as the format for a strftime call.
65 68670b96 Florent Chuffart
#today_fmt = '%B %d, %Y'
66 68670b96 Florent Chuffart
67 68670b96 Florent Chuffart
# List of patterns, relative to source directory, that match files and
68 68670b96 Florent Chuffart
# directories to ignore when looking for source files.
69 68670b96 Florent Chuffart
exclude_patterns = []
70 68670b96 Florent Chuffart
71 68670b96 Florent Chuffart
# The reST default role (used for this markup: `text`) to use for all documents.
72 68670b96 Florent Chuffart
#default_role = None
73 68670b96 Florent Chuffart
74 68670b96 Florent Chuffart
# If true, '()' will be appended to :func: etc. cross-reference text.
75 68670b96 Florent Chuffart
#add_function_parentheses = True
76 68670b96 Florent Chuffart
77 68670b96 Florent Chuffart
# If true, the current module name will be prepended to all description
78 68670b96 Florent Chuffart
# unit titles (such as .. function::).
79 68670b96 Florent Chuffart
#add_module_names = True
80 68670b96 Florent Chuffart
81 68670b96 Florent Chuffart
# If true, sectionauthor and moduleauthor directives will be shown in the
82 68670b96 Florent Chuffart
# output. They are ignored by default.
83 68670b96 Florent Chuffart
#show_authors = False
84 68670b96 Florent Chuffart
85 68670b96 Florent Chuffart
# The name of the Pygments (syntax highlighting) style to use.
86 68670b96 Florent Chuffart
pygments_style = 'sphinx'
87 68670b96 Florent Chuffart
88 68670b96 Florent Chuffart
# A list of ignored prefixes for module index sorting.
89 68670b96 Florent Chuffart
#modindex_common_prefix = []
90 68670b96 Florent Chuffart
91 68670b96 Florent Chuffart
92 68670b96 Florent Chuffart
# -- Options for HTML output ---------------------------------------------------
93 68670b96 Florent Chuffart
94 68670b96 Florent Chuffart
# The theme to use for HTML and HTML Help pages.  See the documentation for
95 68670b96 Florent Chuffart
# a list of builtin themes.
96 68670b96 Florent Chuffart
html_theme = 'default'
97 68670b96 Florent Chuffart
98 68670b96 Florent Chuffart
# Theme options are theme-specific and customize the look and feel of a theme
99 68670b96 Florent Chuffart
# further.  For a list of options available for each theme, see the
100 68670b96 Florent Chuffart
# documentation.
101 68670b96 Florent Chuffart
#html_theme_options = {}
102 68670b96 Florent Chuffart
103 68670b96 Florent Chuffart
# Add any paths that contain custom themes here, relative to this directory.
104 68670b96 Florent Chuffart
#html_theme_path = []
105 68670b96 Florent Chuffart
106 68670b96 Florent Chuffart
# The name for this set of Sphinx documents.  If None, it defaults to
107 68670b96 Florent Chuffart
# "<project> v<release> documentation".
108 68670b96 Florent Chuffart
#html_title = None
109 68670b96 Florent Chuffart
110 68670b96 Florent Chuffart
# A shorter title for the navigation bar.  Default is the same as html_title.
111 68670b96 Florent Chuffart
#html_short_title = None
112 68670b96 Florent Chuffart
113 68670b96 Florent Chuffart
# The name of an image file (relative to this directory) to place at the top
114 68670b96 Florent Chuffart
# of the sidebar.
115 68670b96 Florent Chuffart
#html_logo = None
116 68670b96 Florent Chuffart
117 68670b96 Florent Chuffart
# The name of an image file (within the static path) to use as favicon of the
118 68670b96 Florent Chuffart
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
119 68670b96 Florent Chuffart
# pixels large.
120 68670b96 Florent Chuffart
#html_favicon = None
121 68670b96 Florent Chuffart
122 68670b96 Florent Chuffart
# Add any paths that contain custom static files (such as style sheets) here,
123 68670b96 Florent Chuffart
# relative to this directory. They are copied after the builtin static files,
124 68670b96 Florent Chuffart
# so a file named "default.css" will overwrite the builtin "default.css".
125 68670b96 Florent Chuffart
html_static_path = ['_static']
126 68670b96 Florent Chuffart
127 68670b96 Florent Chuffart
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
128 68670b96 Florent Chuffart
# using the given strftime format.
129 68670b96 Florent Chuffart
#html_last_updated_fmt = '%b %d, %Y'
130 68670b96 Florent Chuffart
131 68670b96 Florent Chuffart
# If true, SmartyPants will be used to convert quotes and dashes to
132 68670b96 Florent Chuffart
# typographically correct entities.
133 68670b96 Florent Chuffart
#html_use_smartypants = True
134 68670b96 Florent Chuffart
135 68670b96 Florent Chuffart
# Custom sidebar templates, maps document names to template names.
136 68670b96 Florent Chuffart
#html_sidebars = {}
137 68670b96 Florent Chuffart
138 68670b96 Florent Chuffart
# Additional templates that should be rendered to pages, maps page names to
139 68670b96 Florent Chuffart
# template names.
140 68670b96 Florent Chuffart
#html_additional_pages = {}
141 68670b96 Florent Chuffart
142 68670b96 Florent Chuffart
# If false, no module index is generated.
143 68670b96 Florent Chuffart
#html_domain_indices = True
144 68670b96 Florent Chuffart
145 68670b96 Florent Chuffart
# If false, no index is generated.
146 68670b96 Florent Chuffart
#html_use_index = True
147 68670b96 Florent Chuffart
148 68670b96 Florent Chuffart
# If true, the index is split into individual pages for each letter.
149 68670b96 Florent Chuffart
#html_split_index = False
150 68670b96 Florent Chuffart
151 68670b96 Florent Chuffart
# If true, links to the reST sources are added to the pages.
152 68670b96 Florent Chuffart
#html_show_sourcelink = True
153 68670b96 Florent Chuffart
154 68670b96 Florent Chuffart
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
155 68670b96 Florent Chuffart
#html_show_sphinx = True
156 68670b96 Florent Chuffart
157 68670b96 Florent Chuffart
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
158 68670b96 Florent Chuffart
#html_show_copyright = True
159 68670b96 Florent Chuffart
160 68670b96 Florent Chuffart
# If true, an OpenSearch description file will be output, and all pages will
161 68670b96 Florent Chuffart
# contain a <link> tag referring to it.  The value of this option must be the
162 68670b96 Florent Chuffart
# base URL from which the finished HTML is served.
163 68670b96 Florent Chuffart
#html_use_opensearch = ''
164 68670b96 Florent Chuffart
165 68670b96 Florent Chuffart
# This is the file name suffix for HTML files (e.g. ".xhtml").
166 68670b96 Florent Chuffart
#html_file_suffix = None
167 68670b96 Florent Chuffart
168 68670b96 Florent Chuffart
# Output file base name for HTML help builder.
169 68670b96 Florent Chuffart
htmlhelp_basename = 'mylabstocksdoc'
170 68670b96 Florent Chuffart
171 68670b96 Florent Chuffart
172 68670b96 Florent Chuffart
# -- Options for LaTeX output --------------------------------------------------
173 68670b96 Florent Chuffart
174 68670b96 Florent Chuffart
latex_elements = {
175 68670b96 Florent Chuffart
# The paper size ('letterpaper' or 'a4paper').
176 68670b96 Florent Chuffart
#'papersize': 'letterpaper',
177 68670b96 Florent Chuffart
178 68670b96 Florent Chuffart
# The font size ('10pt', '11pt' or '12pt').
179 68670b96 Florent Chuffart
#'pointsize': '10pt',
180 68670b96 Florent Chuffart
181 68670b96 Florent Chuffart
# Additional stuff for the LaTeX preamble.
182 68670b96 Florent Chuffart
#'preamble': '',
183 68670b96 Florent Chuffart
}
184 68670b96 Florent Chuffart
185 68670b96 Florent Chuffart
# Grouping the document tree into LaTeX files. List of tuples
186 68670b96 Florent Chuffart
# (source start file, target name, title, author, documentclass [howto/manual]).
187 68670b96 Florent Chuffart
latex_documents = [
188 68670b96 Florent Chuffart
  ('index', 'mylabstocks.tex', u'MyLabStocks Documentation',
189 68670b96 Florent Chuffart
   u'Florent CHUFFART, Gael YVERT', 'manual'),
190 68670b96 Florent Chuffart
]
191 68670b96 Florent Chuffart
192 68670b96 Florent Chuffart
# The name of an image file (relative to this directory) to place at the top of
193 68670b96 Florent Chuffart
# the title page.
194 68670b96 Florent Chuffart
#latex_logo = None
195 68670b96 Florent Chuffart
196 68670b96 Florent Chuffart
# For "manual" documents, if this is true, then toplevel headings are parts,
197 68670b96 Florent Chuffart
# not chapters.
198 68670b96 Florent Chuffart
#latex_use_parts = False
199 68670b96 Florent Chuffart
200 68670b96 Florent Chuffart
# If true, show page references after internal links.
201 68670b96 Florent Chuffart
#latex_show_pagerefs = False
202 68670b96 Florent Chuffart
203 68670b96 Florent Chuffart
# If true, show URL addresses after external links.
204 68670b96 Florent Chuffart
#latex_show_urls = False
205 68670b96 Florent Chuffart
206 68670b96 Florent Chuffart
# Documents to append as an appendix to all manuals.
207 68670b96 Florent Chuffart
#latex_appendices = []
208 68670b96 Florent Chuffart
209 68670b96 Florent Chuffart
# If false, no module index is generated.
210 68670b96 Florent Chuffart
#latex_domain_indices = True
211 68670b96 Florent Chuffart
212 68670b96 Florent Chuffart
213 68670b96 Florent Chuffart
# -- Options for manual page output --------------------------------------------
214 68670b96 Florent Chuffart
215 68670b96 Florent Chuffart
# One entry per manual page. List of tuples
216 68670b96 Florent Chuffart
# (source start file, name, description, authors, manual section).
217 68670b96 Florent Chuffart
man_pages = [
218 68670b96 Florent Chuffart
    ('index', 'MyLabStocks', u'MyLabStocks Documentation',
219 68670b96 Florent Chuffart
     [u'Florent CHUFFART, Gael YVERT'], 1)
220 68670b96 Florent Chuffart
]
221 68670b96 Florent Chuffart
222 68670b96 Florent Chuffart
# If true, show URL addresses after external links.
223 68670b96 Florent Chuffart
#man_show_urls = False
224 68670b96 Florent Chuffart
225 68670b96 Florent Chuffart
226 68670b96 Florent Chuffart
# -- Options for Texinfo output ------------------------------------------------
227 68670b96 Florent Chuffart
228 68670b96 Florent Chuffart
# Grouping the document tree into Texinfo files. List of tuples
229 68670b96 Florent Chuffart
# (source start file, target name, title, author,
230 68670b96 Florent Chuffart
#  dir menu entry, description, category)
231 68670b96 Florent Chuffart
texinfo_documents = [
232 68670b96 Florent Chuffart
  ('index', 'MyLabStocks', u'MyLabStocks Documentation',
233 68670b96 Florent Chuffart
   u'Florent CHUFFART, Gael YVERT', 'MyLabStocks', 'One line description of project.',
234 68670b96 Florent Chuffart
   'Miscellaneous'),
235 68670b96 Florent Chuffart
]
236 68670b96 Florent Chuffart
237 68670b96 Florent Chuffart
# Documents to append as an appendix to all manuals.
238 68670b96 Florent Chuffart
#texinfo_appendices = []
239 68670b96 Florent Chuffart
240 68670b96 Florent Chuffart
# If false, no module index is generated.
241 68670b96 Florent Chuffart
#texinfo_domain_indices = True
242 68670b96 Florent Chuffart
243 68670b96 Florent Chuffart
# How to display URL addresses: 'footnote', 'no', or 'inline'.
244 68670b96 Florent Chuffart
#texinfo_show_urls = 'footnote'