|
10 | 10 | # |
11 | 11 | # All configuration values have a default; values that are commented out |
12 | 12 | # serve to show the default. |
13 | | - |
14 | | -import sys |
15 | 13 | import os |
| 14 | +import sys |
| 15 | + |
16 | 16 | # If extensions (or modules to document with autodoc) are in another directory, |
17 | 17 | # add these directories to sys.path here. If the directory is relative to the |
18 | 18 | # documentation root, use os.path.abspath to make it absolute, like shown here. |
|
27 | 27 | # Add any Sphinx extension module names here, as strings. |
28 | 28 | # They can be extensions |
29 | 29 | # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. |
30 | | -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest'] |
| 30 | +extensions = ["sphinx.ext.autodoc", "sphinx.ext.doctest"] |
31 | 31 |
|
32 | 32 | # Add any paths that contain templates here, relative to this directory. |
33 | | -templates_path = ['_templates'] |
| 33 | +templates_path = ["_templates"] |
34 | 34 |
|
35 | 35 | # The suffix of source filenames. |
36 | | -source_suffix = '.rst' |
| 36 | +source_suffix = ".rst" |
37 | 37 |
|
38 | 38 | # The encoding of source files. |
39 | 39 | # source_encoding = 'utf-8' |
40 | 40 |
|
41 | 41 | # The master toctree document. |
42 | | -master_doc = 'index' |
| 42 | +master_doc = "index" |
43 | 43 |
|
44 | 44 | # General information about the project. |
45 | | -project = 'execnet' |
46 | | -copyright = '2012, holger krekel and others' |
| 45 | +project = "execnet" |
| 46 | +copyright = "2012, holger krekel and others" |
47 | 47 |
|
48 | 48 | # The language for content autogenerated by Sphinx. Refer to documentation |
49 | 49 | # for a list of supported languages. |
|
60 | 60 |
|
61 | 61 | # List of directories, relative to source directory, that shouldn't be searched |
62 | 62 | # for source files. |
63 | | -exclude_trees = ['_build'] |
| 63 | +exclude_trees = ["_build"] |
64 | 64 |
|
65 | 65 | # The reST default role (used for this markup: `text`) to use for all documents |
66 | 66 | # dfault_role = None |
|
79 | 79 | # show_authors = False |
80 | 80 |
|
81 | 81 | # The name of the Pygments (syntax highlighting) style to use. |
82 | | -pygments_style = 'sphinx' |
| 82 | +pygments_style = "sphinx" |
83 | 83 |
|
84 | 84 | # A list of ignored prefixes for module index sorting. |
85 | 85 | # modindex_common_prefix = [] |
|
89 | 89 |
|
90 | 90 | # The theme to use for HTML and HTML Help pages. Major themes that come with |
91 | 91 | # Sphinx are currently 'default' and 'sphinxdoc'. |
92 | | -html_theme = 'sphinxdoc' |
| 92 | +html_theme = "sphinxdoc" |
93 | 93 |
|
94 | 94 | # html_index = 'index.html' |
95 | | -html_sidebars = { |
96 | | - 'index': ['indexsidebar.html'], |
97 | | -} |
| 95 | +html_sidebars = {"index": ["indexsidebar.html"]} |
98 | 96 | # html_additional_pages = {'index': 'index.html'} |
99 | 97 |
|
100 | 98 | # Theme options are theme-specific and customize the look and feel of a theme |
|
124 | 122 | # Add any paths that contain custom static files (such as style sheets) here, |
125 | 123 | # relative to this directory. They are copied after the builtin static files, |
126 | 124 | # so a file named "default.css" will overwrite the builtin "default.css". |
127 | | -html_static_path = ['_static'] |
| 125 | +html_static_path = ["_static"] |
128 | 126 |
|
129 | 127 | # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, |
130 | 128 | # using the given strftime format. |
|
155 | 153 | # html_file_suffix = '' |
156 | 154 |
|
157 | 155 | # Output file base name for HTML help builder. |
158 | | -htmlhelp_basename = 'execnetdoc' |
| 156 | +htmlhelp_basename = "execnetdoc" |
159 | 157 |
|
160 | 158 |
|
161 | 159 | # -- Options for LaTeX output ------------------------------------------------- |
|
169 | 167 | # Grouping the document tree into LaTeX files. List of tuples |
170 | 168 | # (source start file, target name, title, author, documentclass [howto/manual]) |
171 | 169 | latex_documents = [ |
172 | | - ('index', 'execnet.tex', 'execnet Documentation', |
173 | | - 'holger krekel and others', 'manual'), |
| 170 | + ( |
| 171 | + "index", |
| 172 | + "execnet.tex", |
| 173 | + "execnet Documentation", |
| 174 | + "holger krekel and others", |
| 175 | + "manual", |
| 176 | + ) |
174 | 177 | ] |
175 | 178 |
|
176 | 179 | # The name of an image file (relative to this directory) to place at the top of |
|
0 commit comments