]> git.phdru.name Git - sqlconvert.git/blob - docs/conf.py
Initial commit - created the project
[sqlconvert.git] / docs / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # mysql2sql documentation build configuration file, created by
4 # sphinx-quickstart on Fri Jul 22 19:32:24 2016.
5 #
6 # This file is execfile()d with the current directory set to its
7 # containing dir.
8 #
9 # Note that not all possible configuration values are present in this
10 # autogenerated file.
11 #
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
14
15 # If extensions (or modules to document with autodoc) are in another directory,
16 # add these directories to sys.path here. If the directory is relative to the
17 # documentation root, use os.path.abspath to make it absolute, like shown here.
18 #
19 # import os
20 # import sys
21 # sys.path.insert(0, os.path.abspath('.'))
22
23 # -- General configuration ------------------------------------------------
24
25 # If your documentation needs a minimal Sphinx version, state it here.
26 #
27 # needs_sphinx = '1.0'
28
29 # Add any Sphinx extension module names here, as strings. They can be
30 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
31 # ones.
32 extensions = [
33     'sphinx.ext.autodoc',
34 ]
35
36 # Add any paths that contain templates here, relative to this directory.
37 templates_path = ['_templates']
38
39 # The suffix(es) of source filenames.
40 # You can specify multiple suffix as a list of string:
41 #
42 # source_suffix = ['.rst', '.md']
43 source_suffix = '.rst'
44
45 # The encoding of source files.
46 #
47 # source_encoding = 'utf-8-sig'
48
49 # The master toctree document.
50 master_doc = 'index'
51
52 # General information about the project.
53 project = u'mysql2sql'
54 copyright = u'2016, Oleg Broytman'
55 author = u'Oleg Broytman'
56
57 # The version info for the project you're documenting, acts as replacement for
58 # |version| and |release|, also used in various other places throughout the
59 # built documents.
60 #
61 # The short X.Y version.
62 version = u'0.0'
63 # The full version, including alpha/beta/rc tags.
64 release = u'0.0.1'
65
66 # The language for content autogenerated by Sphinx. Refer to documentation
67 # for a list of supported languages.
68 #
69 # This is also used if you do content translation via gettext catalogs.
70 # Usually you set "language" from the command line for these cases.
71 language = None
72
73 # There are two options for replacing |today|: either, you set today to some
74 # non-false value, then it is used:
75 #
76 # today = ''
77 #
78 # Else, today_fmt is used as the format for a strftime call.
79 #
80 # today_fmt = '%B %d, %Y'
81
82 # List of patterns, relative to source directory, that match files and
83 # directories to ignore when looking for source files.
84 # This patterns also effect to html_static_path and html_extra_path
85 exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
86
87 # The reST default role (used for this markup: `text`) to use for all
88 # documents.
89 #
90 # default_role = None
91
92 # If true, '()' will be appended to :func: etc. cross-reference text.
93 #
94 # add_function_parentheses = True
95
96 # If true, the current module name will be prepended to all description
97 # unit titles (such as .. function::).
98 #
99 # add_module_names = True
100
101 # If true, sectionauthor and moduleauthor directives will be shown in the
102 # output. They are ignored by default.
103 #
104 # show_authors = False
105
106 # The name of the Pygments (syntax highlighting) style to use.
107 pygments_style = 'sphinx'
108
109 # A list of ignored prefixes for module index sorting.
110 # modindex_common_prefix = []
111
112 # If true, keep warnings as "system message" paragraphs in the built documents.
113 # keep_warnings = False
114
115 # If true, `todo` and `todoList` produce output, else they produce nothing.
116 todo_include_todos = False
117
118
119 # -- Options for HTML output ----------------------------------------------
120
121 # The theme to use for HTML and HTML Help pages.  See the documentation for
122 # a list of builtin themes.
123 #
124 html_theme = 'alabaster'
125
126 # Theme options are theme-specific and customize the look and feel of a theme
127 # further.  For a list of options available for each theme, see the
128 # documentation.
129 #
130 # html_theme_options = {}
131
132 # Add any paths that contain custom themes here, relative to this directory.
133 # html_theme_path = []
134
135 # The name for this set of Sphinx documents.
136 # "<project> v<release> documentation" by default.
137 #
138 # html_title = u'mysql2sql v0.0.1'
139
140 # A shorter title for the navigation bar.  Default is the same as html_title.
141 #
142 # html_short_title = None
143
144 # The name of an image file (relative to this directory) to place at the top
145 # of the sidebar.
146 #
147 # html_logo = None
148
149 # The name of an image file (relative to this directory) to use as a favicon of
150 # the docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
151 # pixels large.
152 #
153 # html_favicon = None
154
155 # Add any paths that contain custom static files (such as style sheets) here,
156 # relative to this directory. They are copied after the builtin static files,
157 # so a file named "default.css" will overwrite the builtin "default.css".
158 html_static_path = ['_static']
159
160 # Add any extra paths that contain custom files (such as robots.txt or
161 # .htaccess) here, relative to this directory. These files are copied
162 # directly to the root of the documentation.
163 #
164 # html_extra_path = []
165
166 # If not None, a 'Last updated on:' timestamp is inserted at every page
167 # bottom, using the given strftime format.
168 # The empty string is equivalent to '%b %d, %Y'.
169 #
170 # html_last_updated_fmt = None
171
172 # If true, SmartyPants will be used to convert quotes and dashes to
173 # typographically correct entities.
174 #
175 # html_use_smartypants = True
176
177 # Custom sidebar templates, maps document names to template names.
178 #
179 # html_sidebars = {}
180
181 # Additional templates that should be rendered to pages, maps page names to
182 # template names.
183 #
184 # html_additional_pages = {}
185
186 # If false, no module index is generated.
187 #
188 # html_domain_indices = True
189
190 # If false, no index is generated.
191 #
192 # html_use_index = True
193
194 # If true, the index is split into individual pages for each letter.
195 #
196 # html_split_index = False
197
198 # If true, links to the reST sources are added to the pages.
199 #
200 # html_show_sourcelink = True
201
202 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
203 #
204 # html_show_sphinx = True
205
206 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
207 #
208 # html_show_copyright = True
209
210 # If true, an OpenSearch description file will be output, and all pages will
211 # contain a <link> tag referring to it.  The value of this option must be the
212 # base URL from which the finished HTML is served.
213 #
214 # html_use_opensearch = ''
215
216 # This is the file name suffix for HTML files (e.g. ".xhtml").
217 # html_file_suffix = None
218
219 # Language to be used for generating the HTML full-text search index.
220 # Sphinx supports the following languages:
221 #   'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
222 #   'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr', 'zh'
223 #
224 # html_search_language = 'en'
225
226 # A dictionary with options for the search language support, empty by default.
227 # 'ja' uses this config value.
228 # 'zh' user can custom change `jieba` dictionary path.
229 #
230 # html_search_options = {'type': 'default'}
231
232 # The name of a javascript file (relative to the configuration directory) that
233 # implements a search results scorer. If empty, the default will be used.
234 #
235 # html_search_scorer = 'scorer.js'
236
237 # Output file base name for HTML help builder.
238 htmlhelp_basename = 'mysql2sqldoc'
239
240 # -- Options for LaTeX output ---------------------------------------------
241
242 latex_elements = {
243      # The paper size ('letterpaper' or 'a4paper').
244      #
245      # 'papersize': 'letterpaper',
246
247      # The font size ('10pt', '11pt' or '12pt').
248      #
249      # 'pointsize': '10pt',
250
251      # Additional stuff for the LaTeX preamble.
252      #
253      # 'preamble': '',
254
255      # Latex figure (float) alignment
256      #
257      # 'figure_align': 'htbp',
258 }
259
260 # Grouping the document tree into LaTeX files. List of tuples
261 # (source start file, target name, title,
262 #  author, documentclass [howto, manual, or own class]).
263 latex_documents = [
264     (master_doc, 'mysql2sql.tex', u'mysql2sql Documentation',
265      u'Oleg Broytman', 'manual'),
266 ]
267
268 # The name of an image file (relative to this directory) to place at the top of
269 # the title page.
270 #
271 # latex_logo = None
272
273 # For "manual" documents, if this is true, then toplevel headings are parts,
274 # not chapters.
275 #
276 # latex_use_parts = False
277
278 # If true, show page references after internal links.
279 #
280 # latex_show_pagerefs = False
281
282 # If true, show URL addresses after external links.
283 #
284 # latex_show_urls = False
285
286 # Documents to append as an appendix to all manuals.
287 #
288 # latex_appendices = []
289
290 # It false, will not define \strong, \code,     itleref, \crossref ... but only
291 # \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added
292 # packages.
293 #
294 # latex_keep_old_macro_names = True
295
296 # If false, no module index is generated.
297 #
298 # latex_domain_indices = True
299
300
301 # -- Options for manual page output ---------------------------------------
302
303 # One entry per manual page. List of tuples
304 # (source start file, name, description, authors, manual section).
305 man_pages = [
306     (master_doc, 'mysql2sql', u'mysql2sql Documentation',
307      [author], 1)
308 ]
309
310 # If true, show URL addresses after external links.
311 #
312 # man_show_urls = False
313
314
315 # -- Options for Texinfo output -------------------------------------------
316
317 # Grouping the document tree into Texinfo files. List of tuples
318 # (source start file, target name, title, author,
319 #  dir menu entry, description, category)
320 texinfo_documents = [
321     (master_doc, 'mysql2sql', u'mysql2sql Documentation',
322      author, 'mysql2sql', 'One line description of project.',
323      'Miscellaneous'),
324 ]
325
326 # Documents to append as an appendix to all manuals.
327 #
328 # texinfo_appendices = []
329
330 # If false, no module index is generated.
331 #
332 # texinfo_domain_indices = True
333
334 # How to display URL addresses: 'footnote', 'no', or 'inline'.
335 #
336 # texinfo_show_urls = 'footnote'
337
338 # If true, do not generate a @detailmenu in the "Top" node's menu.
339 #
340 # texinfo_no_detailmenu = False