annotate Yading/musixmatch-master/docs/conf.py @ 13:844d341cf643 tip

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