|
1 | 1 | # -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +# Copyright 2020 Open Source Robotics Foundation, Inc. |
| 4 | +# |
| 5 | +# Redistribution and use in source and binary forms, with or without |
| 6 | +# modification, are permitted provided that the following conditions are met: |
| 7 | +# |
| 8 | +# * Redistributions of source code must retain the above copyright |
| 9 | +# notice, this list of conditions and the following disclaimer. |
| 10 | +# |
| 11 | +# * Redistributions in binary form must reproduce the above copyright |
| 12 | +# notice, this list of conditions and the following disclaimer in the |
| 13 | +# documentation and/or other materials provided with the distribution. |
| 14 | +# |
| 15 | +# * Neither the name of the Open Source Robotics Foundation, Inc. nor the names of its |
| 16 | +# contributors may be used to endorse or promote products derived from |
| 17 | +# this software without specific prior written permission. |
| 18 | +# |
| 19 | +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 20 | +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 21 | +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 22 | +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 23 | +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 24 | +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 25 | +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 26 | +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 27 | +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 28 | +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 29 | +# POSSIBILITY OF SUCH DAMAGE. |
| 30 | + |
| 31 | + |
2 | 32 | # |
3 | 33 | # tf2 documentation build configuration file, created by |
4 | 34 | # sphinx-quickstart on Mon Jun 1 14:21:53 2009. |
5 | 35 | # |
6 | | -# This file is execfile()d with the current directory set to its containing dir. |
| 36 | +# This file is execfile()d with the current directory set to its |
| 37 | +# containing dir. |
7 | 38 | # |
8 | 39 | # Note that not all possible configuration values are present in this |
9 | 40 | # autogenerated file. |
10 | 41 | # |
11 | 42 | # All configuration values have a default; values that are commented out |
12 | 43 | # serve to show the default. |
13 | 44 |
|
14 | | -import sys, os |
15 | | - |
16 | 45 | # If extensions (or modules to document with autodoc) are in another directory, |
17 | 46 | # add these directories to sys.path here. If the directory is relative to the |
18 | 47 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
19 | 48 | # sys.path.append(os.path.abspath('./src/tf2_kdl')) |
20 | 49 |
|
21 | | -# -- General configuration ----------------------------------------------------- |
| 50 | +# -- General configuration ---------------------------------------------------- |
22 | 51 |
|
23 | | -# Add any Sphinx extension module names here, as strings. They can be extensions |
| 52 | +# Add any Sphinx extension module names here, as strings. |
| 53 | +# They can be extensions |
24 | 54 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
25 | | -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.imgmath'] |
| 55 | +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', |
| 56 | + 'sphinx.ext.intersphinx', 'sphinx.ext.imgmath'] |
26 | 57 |
|
27 | 58 | # Add any paths that contain templates here, relative to this directory. |
28 | 59 | templates_path = ['_templates'] |
|
31 | 62 | source_suffix = '.rst' |
32 | 63 |
|
33 | 64 | # The encoding of source files. |
34 | | -#source_encoding = 'utf-8' |
| 65 | +# source_encoding = 'utf-8' |
35 | 66 |
|
36 | 67 | # The master toctree document. |
37 | 68 | master_doc = 'index' |
38 | 69 |
|
39 | 70 | # General information about the project. |
40 | 71 | project = u'tf2_kdl' |
41 | | -copyright = u'2016, Open Source Robotics Foundation' |
| 72 | +copyright = u'2016, Open Source Robotics Foundation' # noqa(A001) |
42 | 73 |
|
43 | 74 | # The version info for the project you're documenting, acts as replacement for |
44 | 75 | # |version| and |release|, also used in various other places throughout the |
|
51 | 82 |
|
52 | 83 | # The language for content autogenerated by Sphinx. Refer to documentation |
53 | 84 | # for a list of supported languages. |
54 | | -#language = None |
| 85 | +# language = None |
55 | 86 |
|
56 | 87 | # There are two options for replacing |today|: either, you set today to some |
57 | 88 | # non-false value, then it is used: |
58 | | -#today = '' |
| 89 | +# today = '' |
59 | 90 | # Else, today_fmt is used as the format for a strftime call. |
60 | | -#today_fmt = '%B %d, %Y' |
| 91 | +# today_fmt = '%B %d, %Y' |
61 | 92 |
|
62 | 93 | # List of documents that shouldn't be included in the build. |
63 | | -#unused_docs = [] |
| 94 | +# unused_docs = [] |
64 | 95 |
|
65 | 96 | # List of directories, relative to source directory, that shouldn't be searched |
66 | 97 | # for source files. |
67 | 98 | exclude_trees = ['_build'] |
68 | 99 |
|
69 | 100 | exclude_patterns = ['_CHANGELOG.rst'] |
70 | 101 |
|
71 | | -# The reST default role (used for this markup: `text`) to use for all documents. |
72 | | -#default_role = None |
| 102 | +# The reST default role (used for this markup: `text`) to use |
| 103 | +# for all documents. |
| 104 | +# default_role = None |
73 | 105 |
|
74 | 106 | # If true, '()' will be appended to :func: etc. cross-reference text. |
75 | | -#add_function_parentheses = True |
| 107 | +# add_function_parentheses = True |
76 | 108 |
|
77 | 109 | # If true, the current module name will be prepended to all description |
78 | 110 | # unit titles (such as .. function::). |
79 | | -#add_module_names = True |
| 111 | +# add_module_names = True |
80 | 112 |
|
81 | 113 | # If true, sectionauthor and moduleauthor directives will be shown in the |
82 | 114 | # output. They are ignored by default. |
83 | | -#show_authors = False |
| 115 | +# show_authors = False |
84 | 116 |
|
85 | 117 | # The name of the Pygments (syntax highlighting) style to use. |
86 | 118 | pygments_style = 'sphinx' |
87 | 119 |
|
88 | 120 | # A list of ignored prefixes for module index sorting. |
89 | | -#modindex_common_prefix = [] |
| 121 | +# modindex_common_prefix = [] |
90 | 122 |
|
91 | 123 |
|
92 | | -# -- Options for HTML output --------------------------------------------------- |
| 124 | +# -- Options for HTML output ------------------------------------------------ |
93 | 125 |
|
94 | 126 | # The theme to use for HTML and HTML Help pages. Major themes that come with |
95 | 127 | # Sphinx are currently 'default' and 'sphinxdoc'. |
|
98 | 130 | # Theme options are theme-specific and customize the look and feel of a theme |
99 | 131 | # further. For a list of options available for each theme, see the |
100 | 132 | # documentation. |
101 | | -#html_theme_options = {} |
| 133 | +# html_theme_options = {} |
102 | 134 |
|
103 | 135 | # Add any paths that contain custom themes here, relative to this directory. |
104 | | -#html_theme_path = [] |
| 136 | +# html_theme_path = [] |
105 | 137 |
|
106 | 138 | # The name for this set of Sphinx documents. If None, it defaults to |
107 | 139 | # "<project> v<release> documentation". |
108 | | -#html_title = None |
| 140 | +# html_title = None |
109 | 141 |
|
110 | 142 | # A shorter title for the navigation bar. Default is the same as html_title. |
111 | | -#html_short_title = None |
| 143 | +# html_short_title = None |
112 | 144 |
|
113 | 145 | # The name of an image file (relative to this directory) to place at the top |
114 | 146 | # of the sidebar. |
115 | | -#html_logo = None |
| 147 | +# html_logo = None |
116 | 148 |
|
117 | 149 | # The name of an image file (within the static path) to use as favicon of the |
118 | 150 | # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
119 | 151 | # pixels large. |
120 | | -#html_favicon = None |
| 152 | +# html_favicon = None |
121 | 153 |
|
122 | 154 | # Add any paths that contain custom static files (such as style sheets) here, |
123 | 155 | # relative to this directory. They are copied after the builtin static files, |
124 | 156 | # so a file named "default.css" will overwrite the builtin "default.css". |
125 | | -#html_static_path = ['_static'] |
| 157 | +# html_static_path = ['_static'] |
126 | 158 |
|
127 | 159 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
128 | 160 | # using the given strftime format. |
129 | | -#html_last_updated_fmt = '%b %d, %Y' |
| 161 | +# html_last_updated_fmt = '%b %d, %Y' |
130 | 162 |
|
131 | 163 | # If true, SmartyPants will be used to convert quotes and dashes to |
132 | 164 | # typographically correct entities. |
133 | | -#html_use_smartypants = True |
| 165 | +# html_use_smartypants = True |
134 | 166 |
|
135 | 167 | # Custom sidebar templates, maps document names to template names. |
136 | | -#html_sidebars = {} |
| 168 | +# html_sidebars = {} |
137 | 169 |
|
138 | 170 | # Additional templates that should be rendered to pages, maps page names to |
139 | 171 | # template names. |
140 | | -#html_additional_pages = {} |
| 172 | +# html_additional_pages = {} |
141 | 173 |
|
142 | 174 | # If false, no module index is generated. |
143 | | -#html_use_modindex = True |
| 175 | +# html_use_modindex = True |
144 | 176 |
|
145 | 177 | # If false, no index is generated. |
146 | | -#html_use_index = True |
| 178 | +# html_use_index = True |
147 | 179 |
|
148 | 180 | # If true, the index is split into individual pages for each letter. |
149 | | -#html_split_index = False |
| 181 | +# html_split_index = False |
150 | 182 |
|
151 | 183 | # If true, links to the reST sources are added to the pages. |
152 | | -#html_show_sourcelink = True |
| 184 | +# html_show_sourcelink = True |
153 | 185 |
|
154 | 186 | # If true, an OpenSearch description file will be output, and all pages will |
155 | 187 | # contain a <link> tag referring to it. The value of this option must be the |
156 | 188 | # base URL from which the finished HTML is served. |
157 | | -#html_use_opensearch = '' |
| 189 | +# html_use_opensearch = '' |
158 | 190 |
|
159 | 191 | # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). |
160 | | -#html_file_suffix = '' |
| 192 | +# html_file_suffix = '' |
161 | 193 |
|
162 | 194 | # Output file base name for HTML help builder. |
163 | 195 | htmlhelp_basename = 'tfdoc' |
164 | 196 |
|
165 | 197 |
|
166 | | -# -- Options for LaTeX output -------------------------------------------------- |
| 198 | +# -- Options for LaTeX output ------------------------------------------------- |
167 | 199 |
|
168 | 200 | # The paper size ('letter' or 'a4'). |
169 | | -#latex_paper_size = 'letter' |
| 201 | +# latex_paper_size = 'letter' |
170 | 202 |
|
171 | 203 | # The font size ('10pt', '11pt' or '12pt'). |
172 | | -#latex_font_size = '10pt' |
| 204 | +# latex_font_size = '10pt' |
173 | 205 |
|
174 | 206 | # Grouping the document tree into LaTeX files. List of tuples |
175 | | -# (source start file, target name, title, author, documentclass [howto/manual]). |
| 207 | +# (source start file, target name, title, author, |
| 208 | +# documentclass [howto/manual]). |
176 | 209 | latex_documents = [ |
177 | 210 | ('index', 'tf.tex', u'stereo\\_utils Documentation', |
178 | 211 | u'Tully Foote and Eitan Marder-Eppstein', 'manual'), |
179 | 212 | ] |
180 | 213 |
|
181 | 214 | # The name of an image file (relative to this directory) to place at the top of |
182 | 215 | # the title page. |
183 | | -#latex_logo = None |
| 216 | +# latex_logo = None |
184 | 217 |
|
185 | 218 | # For "manual" documents, if this is true, then toplevel headings are parts, |
186 | 219 | # not chapters. |
187 | | -#latex_use_parts = False |
| 220 | +# latex_use_parts = False |
188 | 221 |
|
189 | 222 | # Additional stuff for the LaTeX preamble. |
190 | | -#latex_preamble = '' |
| 223 | +# latex_preamble = '' |
191 | 224 |
|
192 | 225 | # Documents to append as an appendix to all manuals. |
193 | | -#latex_appendices = [] |
| 226 | +# latex_appendices = [] |
194 | 227 |
|
195 | 228 | # If false, no module index is generated. |
196 | | -#latex_use_modindex = True |
| 229 | +# latex_use_modindex = True |
197 | 230 |
|
198 | 231 |
|
199 | 232 | # Example configuration for intersphinx: refer to the Python standard library. |
200 | 233 | intersphinx_mapping = { |
201 | 234 | 'http://docs.python.org/': None, |
202 | 235 | 'http://docs.opencv.org/3.0-last-rst/': None, |
203 | | - 'http://docs.scipy.org/doc/numpy' : None |
| 236 | + 'http://docs.scipy.org/doc/numpy': None |
204 | 237 | } |
0 commit comments