source: trunk/adm/website/conf.py @ 36

Last change on this file since 36 was 36, checked in by pinsard, 13 years ago

add end users website production

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