|
21 | 21 | # If extensions (or modules to document with autodoc) are in another directory, |
22 | 22 | # add these directories to sys.path here. If the directory is relative to the |
23 | 23 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
24 | | -sys.path.insert(0, os.path.abspath('../..')) |
| 24 | +sys.path.insert(0, os.path.abspath("../..")) |
25 | 25 |
|
26 | 26 | from mypy.version import __version__ as mypy_version |
27 | 27 |
|
28 | 28 | # -- General configuration ------------------------------------------------ |
29 | 29 |
|
30 | 30 | # If your documentation needs a minimal Sphinx version, state it here. |
31 | | -#needs_sphinx = '1.0' |
| 31 | +# needs_sphinx = '1.0' |
32 | 32 |
|
33 | 33 | # Add any Sphinx extension module names here, as strings. They can be |
34 | 34 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
35 | 35 | # ones. |
36 | | -extensions = ['sphinx.ext.intersphinx'] |
| 36 | +extensions = ["sphinx.ext.intersphinx"] |
37 | 37 |
|
38 | 38 | # Add any paths that contain templates here, relative to this directory. |
39 | | -templates_path = ['_templates'] |
| 39 | +templates_path = ["_templates"] |
40 | 40 |
|
41 | 41 | # The suffix of source filenames. |
42 | | -source_suffix = '.rst' |
| 42 | +source_suffix = ".rst" |
43 | 43 |
|
44 | 44 | # The encoding of source files. |
45 | | -#source_encoding = 'utf-8-sig' |
| 45 | +# source_encoding = 'utf-8-sig' |
46 | 46 |
|
47 | 47 | # The master toctree document. |
48 | | -master_doc = 'index' |
| 48 | +master_doc = "index" |
49 | 49 |
|
50 | 50 | # General information about the project. |
51 | | -project = u'Mypy' |
52 | | -copyright = u'2016, Jukka Lehtosalo' |
| 51 | +project = "Mypy" |
| 52 | +copyright = "2016, Jukka Lehtosalo" |
53 | 53 |
|
54 | 54 | # The version info for the project you're documenting, acts as replacement for |
55 | 55 | # |version| and |release|, also used in various other places throughout the |
56 | 56 | # built documents. |
57 | 57 | # |
58 | 58 | # The short X.Y version. |
59 | | -version = mypy_version.split('-')[0] |
| 59 | +version = mypy_version.split("-")[0] |
60 | 60 | # The full version, including alpha/beta/rc tags. |
61 | 61 | release = mypy_version |
62 | 62 |
|
63 | 63 | # The language for content autogenerated by Sphinx. Refer to documentation |
64 | 64 | # for a list of supported languages. |
65 | | -#language = None |
| 65 | +# language = None |
66 | 66 |
|
67 | 67 | # There are two options for replacing |today|: either, you set today to some |
68 | 68 | # non-false value, then it is used: |
69 | | -#today = '' |
| 69 | +# today = '' |
70 | 70 | # Else, today_fmt is used as the format for a strftime call. |
71 | | -#today_fmt = '%B %d, %Y' |
| 71 | +# today_fmt = '%B %d, %Y' |
72 | 72 |
|
73 | 73 | # List of patterns, relative to source directory, that match files and |
74 | 74 | # directories to ignore when looking for source files. |
75 | 75 | exclude_patterns = [] |
76 | 76 |
|
77 | 77 | # The reST default role (used for this markup: `text`) to use for all |
78 | 78 | # documents. |
79 | | -#default_role = None |
| 79 | +# default_role = None |
80 | 80 |
|
81 | 81 | # If true, '()' will be appended to :func: etc. cross-reference text. |
82 | | -#add_function_parentheses = True |
| 82 | +# add_function_parentheses = True |
83 | 83 |
|
84 | 84 | # If true, the current module name will be prepended to all description |
85 | 85 | # unit titles (such as .. function::). |
86 | | -#add_module_names = True |
| 86 | +# add_module_names = True |
87 | 87 |
|
88 | 88 | # If true, sectionauthor and moduleauthor directives will be shown in the |
89 | 89 | # output. They are ignored by default. |
90 | | -#show_authors = False |
| 90 | +# show_authors = False |
91 | 91 |
|
92 | 92 | # The name of the Pygments (syntax highlighting) style to use. |
93 | | -pygments_style = 'sphinx' |
| 93 | +pygments_style = "sphinx" |
94 | 94 |
|
95 | 95 | # A list of ignored prefixes for module index sorting. |
96 | | -#modindex_common_prefix = [] |
| 96 | +# modindex_common_prefix = [] |
97 | 97 |
|
98 | 98 | # If true, keep warnings as "system message" paragraphs in the built documents. |
99 | | -#keep_warnings = False |
| 99 | +# keep_warnings = False |
100 | 100 |
|
101 | 101 |
|
102 | 102 | # -- Options for HTML output ---------------------------------------------- |
|
106 | 106 | try: |
107 | 107 | import sphinx_rtd_theme |
108 | 108 | except: |
109 | | - html_theme = 'default' |
| 109 | + html_theme = "default" |
110 | 110 | else: |
111 | | - html_theme = 'sphinx_rtd_theme' |
| 111 | + html_theme = "sphinx_rtd_theme" |
112 | 112 | html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] |
113 | 113 |
|
114 | 114 | # Theme options are theme-specific and customize the look and feel of a theme |
115 | 115 | # further. For a list of options available for each theme, see the |
116 | 116 | # documentation. |
117 | | -#html_theme_options = {} |
| 117 | +# html_theme_options = {} |
118 | 118 |
|
119 | 119 | # Add any paths that contain custom themes here, relative to this directory. |
120 | | -#html_theme_path = [] |
| 120 | +# html_theme_path = [] |
121 | 121 |
|
122 | 122 | # The name for this set of Sphinx documents. If None, it defaults to |
123 | 123 | # "<project> v<release> documentation". |
124 | | -#html_title = None |
| 124 | +# html_title = None |
125 | 125 |
|
126 | 126 | # A shorter title for the navigation bar. Default is the same as html_title. |
127 | | -#html_short_title = None |
| 127 | +# html_short_title = None |
128 | 128 |
|
129 | 129 | # The name of an image file (relative to this directory) to place at the top |
130 | 130 | # of the sidebar. |
131 | | -#html_logo = None |
| 131 | +# html_logo = None |
132 | 132 |
|
133 | 133 | # The name of an image file (within the static path) to use as favicon of the |
134 | 134 | # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 |
135 | 135 | # pixels large. |
136 | | -#html_favicon = None |
| 136 | +# html_favicon = None |
137 | 137 |
|
138 | 138 | # Add any paths that contain custom static files (such as style sheets) here, |
139 | 139 | # relative to this directory. They are copied after the builtin static files, |
140 | 140 | # so a file named "default.css" will overwrite the builtin "default.css". |
141 | | -#html_static_path = ['_static'] |
| 141 | +# html_static_path = ['_static'] |
142 | 142 |
|
143 | 143 | # Add any extra paths that contain custom files (such as robots.txt or |
144 | 144 | # .htaccess) here, relative to this directory. These files are copied |
145 | 145 | # directly to the root of the documentation. |
146 | | -#html_extra_path = [] |
| 146 | +# html_extra_path = [] |
147 | 147 |
|
148 | 148 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
149 | 149 | # using the given strftime format. |
150 | | -#html_last_updated_fmt = '%b %d, %Y' |
| 150 | +# html_last_updated_fmt = '%b %d, %Y' |
151 | 151 |
|
152 | 152 | # If true, SmartyPants will be used to convert quotes and dashes to |
153 | 153 | # typographically correct entities. |
154 | | -#html_use_smartypants = True |
| 154 | +# html_use_smartypants = True |
155 | 155 |
|
156 | 156 | # Custom sidebar templates, maps document names to template names. |
157 | | -#html_sidebars = {} |
| 157 | +# html_sidebars = {} |
158 | 158 |
|
159 | 159 | # Additional templates that should be rendered to pages, maps page names to |
160 | 160 | # template names. |
161 | | -#html_additional_pages = {} |
| 161 | +# html_additional_pages = {} |
162 | 162 |
|
163 | 163 | # If false, no module index is generated. |
164 | | -#html_domain_indices = True |
| 164 | +# html_domain_indices = True |
165 | 165 |
|
166 | 166 | # If false, no index is generated. |
167 | | -#html_use_index = True |
| 167 | +# html_use_index = True |
168 | 168 |
|
169 | 169 | # If true, the index is split into individual pages for each letter. |
170 | | -#html_split_index = False |
| 170 | +# html_split_index = False |
171 | 171 |
|
172 | 172 | # If true, links to the reST sources are added to the pages. |
173 | | -#html_show_sourcelink = True |
| 173 | +# html_show_sourcelink = True |
174 | 174 |
|
175 | 175 | # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. |
176 | | -#html_show_sphinx = True |
| 176 | +# html_show_sphinx = True |
177 | 177 |
|
178 | 178 | # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. |
179 | | -#html_show_copyright = True |
| 179 | +# html_show_copyright = True |
180 | 180 |
|
181 | 181 | # If true, an OpenSearch description file will be output, and all pages will |
182 | 182 | # contain a <link> tag referring to it. The value of this option must be the |
183 | 183 | # base URL from which the finished HTML is served. |
184 | | -#html_use_opensearch = '' |
| 184 | +# html_use_opensearch = '' |
185 | 185 |
|
186 | 186 | # This is the file name suffix for HTML files (e.g. ".xhtml"). |
187 | | -#html_file_suffix = None |
| 187 | +# html_file_suffix = None |
188 | 188 |
|
189 | 189 | # Output file base name for HTML help builder. |
190 | | -htmlhelp_basename = 'Mypydoc' |
| 190 | +htmlhelp_basename = "Mypydoc" |
191 | 191 |
|
192 | 192 |
|
193 | 193 | # -- Options for LaTeX output --------------------------------------------- |
194 | 194 |
|
195 | 195 | latex_elements = { |
196 | | -# The paper size ('letterpaper' or 'a4paper'). |
197 | | -#'papersize': 'letterpaper', |
198 | | - |
199 | | -# The font size ('10pt', '11pt' or '12pt'). |
200 | | -#'pointsize': '10pt', |
201 | | - |
202 | | -# Additional stuff for the LaTeX preamble. |
203 | | -#'preamble': '', |
| 196 | + # The paper size ('letterpaper' or 'a4paper'). |
| 197 | + #'papersize': 'letterpaper', |
| 198 | + # The font size ('10pt', '11pt' or '12pt'). |
| 199 | + #'pointsize': '10pt', |
| 200 | + # Additional stuff for the LaTeX preamble. |
| 201 | + #'preamble': '', |
204 | 202 | } |
205 | 203 |
|
206 | 204 | # Grouping the document tree into LaTeX files. List of tuples |
207 | 205 | # (source start file, target name, title, |
208 | 206 | # author, documentclass [howto, manual, or own class]). |
209 | 207 | latex_documents = [ |
210 | | - ('index', 'Mypy.tex', u'Mypy Documentation', |
211 | | - u'Jukka', 'manual'), |
| 208 | + ("index", "Mypy.tex", "Mypy Documentation", "Jukka", "manual"), |
212 | 209 | ] |
213 | 210 |
|
214 | 211 | # The name of an image file (relative to this directory) to place at the top of |
215 | 212 | # the title page. |
216 | | -#latex_logo = None |
| 213 | +# latex_logo = None |
217 | 214 |
|
218 | 215 | # For "manual" documents, if this is true, then toplevel headings are parts, |
219 | 216 | # not chapters. |
220 | | -#latex_use_parts = False |
| 217 | +# latex_use_parts = False |
221 | 218 |
|
222 | 219 | # If true, show page references after internal links. |
223 | | -#latex_show_pagerefs = False |
| 220 | +# latex_show_pagerefs = False |
224 | 221 |
|
225 | 222 | # If true, show URL addresses after external links. |
226 | | -#latex_show_urls = False |
| 223 | +# latex_show_urls = False |
227 | 224 |
|
228 | 225 | # Documents to append as an appendix to all manuals. |
229 | | -#latex_appendices = [] |
| 226 | +# latex_appendices = [] |
230 | 227 |
|
231 | 228 | # If false, no module index is generated. |
232 | | -#latex_domain_indices = True |
| 229 | +# latex_domain_indices = True |
233 | 230 |
|
234 | 231 |
|
235 | 232 | # -- Options for manual page output --------------------------------------- |
236 | 233 |
|
237 | 234 | # One entry per manual page. List of tuples |
238 | 235 | # (source start file, name, description, authors, manual section). |
239 | | -man_pages = [ |
240 | | - ('index', 'mypy', u'Mypy Documentation', |
241 | | - [u'Jukka Lehtosalo'], 1) |
242 | | -] |
| 236 | +man_pages = [("index", "mypy", "Mypy Documentation", ["Jukka Lehtosalo"], 1)] |
243 | 237 |
|
244 | 238 | # If true, show URL addresses after external links. |
245 | | -#man_show_urls = False |
| 239 | +# man_show_urls = False |
246 | 240 |
|
247 | 241 |
|
248 | 242 | # -- Options for Texinfo output ------------------------------------------- |
|
251 | 245 | # (source start file, target name, title, author, |
252 | 246 | # dir menu entry, description, category) |
253 | 247 | texinfo_documents = [ |
254 | | - ('index', 'Mypy', u'Mypy Documentation', |
255 | | - u'Jukka', 'Mypy', 'One line description of project.', |
256 | | - 'Miscellaneous'), |
| 248 | + ( |
| 249 | + "index", |
| 250 | + "Mypy", |
| 251 | + "Mypy Documentation", |
| 252 | + "Jukka", |
| 253 | + "Mypy", |
| 254 | + "One line description of project.", |
| 255 | + "Miscellaneous", |
| 256 | + ), |
257 | 257 | ] |
258 | 258 |
|
259 | 259 | # Documents to append as an appendix to all manuals. |
260 | | -#texinfo_appendices = [] |
| 260 | +# texinfo_appendices = [] |
261 | 261 |
|
262 | 262 | # If false, no module index is generated. |
263 | | -#texinfo_domain_indices = True |
| 263 | +# texinfo_domain_indices = True |
264 | 264 |
|
265 | 265 | # How to display URL addresses: 'footnote', 'no', or 'inline'. |
266 | | -#texinfo_show_urls = 'footnote' |
| 266 | +# texinfo_show_urls = 'footnote' |
267 | 267 |
|
268 | 268 | # If true, do not generate a @detailmenu in the "Top" node's menu. |
269 | | -#texinfo_no_detailmenu = False |
| 269 | +# texinfo_no_detailmenu = False |
270 | 270 |
|
271 | | -rst_prolog = '.. |...| unicode:: U+2026 .. ellipsis\n' |
| 271 | +rst_prolog = ".. |...| unicode:: U+2026 .. ellipsis\n" |
272 | 272 |
|
273 | 273 | intersphinx_mapping = { |
274 | | - 'python': ('https://docs.python.org/3', None), |
275 | | - 'six': ('https://six.readthedocs.io', None), |
276 | | - 'attrs': ('http://www.attrs.org/en/stable', None), |
277 | | - 'cython': ('http://docs.cython.org/en/latest', None), |
278 | | - 'monkeytype': ('https://monkeytype.readthedocs.io/en/latest', None), |
279 | | - 'setuptools': ('https://setuptools.readthedocs.io/en/latest', None), |
| 274 | + "python": ("https://docs.python.org/3", None), |
| 275 | + "six": ("https://six.readthedocs.io", None), |
| 276 | + "attrs": ("http://www.attrs.org/en/stable", None), |
| 277 | + "cython": ("http://docs.cython.org/en/latest", None), |
| 278 | + "monkeytype": ("https://monkeytype.readthedocs.io/en/latest", None), |
| 279 | + "setuptools": ("https://setuptools.readthedocs.io/en/latest", None), |
280 | 280 | } |
281 | 281 |
|
282 | 282 |
|
283 | 283 | def setup(app: Sphinx) -> None: |
284 | 284 | app.add_object_type( |
285 | | - 'confval', |
286 | | - 'confval', |
287 | | - objname='configuration value', |
288 | | - indextemplate='pair: %s; configuration value', |
| 285 | + "confval", |
| 286 | + "confval", |
| 287 | + objname="configuration value", |
| 288 | + indextemplate="pair: %s; configuration value", |
289 | 289 | doc_field_types=[ |
290 | | - Field('type', label='Type', has_arg=False, names=('type',)), |
291 | | - Field('default', label='Default', has_arg=False, names=('default',)), |
292 | | - ] |
| 290 | + Field("type", label="Type", has_arg=False, names=("type",)), |
| 291 | + Field("default", label="Default", has_arg=False, names=("default",)), |
| 292 | + ], |
293 | 293 | ) |
0 commit comments