|
26 | 26 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
27 | 27 | # ones. |
28 | 28 | extensions = [ |
29 | | - 'sphinx.ext.autodoc', |
| 29 | + "sphinx.ext.autodoc", |
30 | 30 | ] |
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-sig' |
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 = u'python-docx-template' |
46 | | -copyright = u'2015, Eric Lapouyade' |
| 45 | +project = "python-docx-template" |
| 46 | +copyright = "2015, Eric Lapouyade" |
47 | 47 |
|
48 | 48 | # The version info for the project you're documenting, acts as replacement for |
49 | 49 | # |version| and |release|, also used in various other places throughout the |
50 | 50 | # built documents. |
51 | 51 | # |
52 | 52 | # The short X.Y version. |
53 | | -version = '0.9' |
| 53 | +version = "0.9" |
54 | 54 | # The full version, including alpha/beta/rc tags. |
55 | | -release = '0.9.x' |
| 55 | +release = "0.9.x" |
56 | 56 |
|
57 | 57 | # The language for content autogenerated by Sphinx. Refer to documentation |
58 | 58 | # for a list of supported languages. |
|
66 | 66 |
|
67 | 67 | # List of patterns, relative to source directory, that match files and |
68 | 68 | # directories to ignore when looking for source files. |
69 | | -exclude_patterns = ['_build'] |
| 69 | +exclude_patterns = ["_build"] |
70 | 70 |
|
71 | 71 | # The reST default role (used for this markup: `text`) to use for all |
72 | 72 | # documents. |
|
84 | 84 | # show_authors = False |
85 | 85 |
|
86 | 86 | # The name of the Pygments (syntax highlighting) style to use. |
87 | | -pygments_style = 'sphinx' |
| 87 | +pygments_style = "sphinx" |
88 | 88 |
|
89 | 89 | # A list of ignored prefixes for module index sorting. |
90 | 90 | # modindex_common_prefix = [] |
|
97 | 97 |
|
98 | 98 | # The theme to use for HTML and HTML Help pages. See the documentation for |
99 | 99 | # a list of builtin themes. |
100 | | -html_theme = 'default' |
| 100 | +html_theme = "default" |
101 | 101 |
|
102 | 102 | # Theme options are theme-specific and customize the look and feel of a theme |
103 | 103 | # further. For a list of options available for each theme, see the |
|
126 | 126 | # Add any paths that contain custom static files (such as style sheets) here, |
127 | 127 | # relative to this directory. They are copied after the builtin static files, |
128 | 128 | # so a file named "default.css" will overwrite the builtin "default.css". |
129 | | -html_static_path = ['_static'] |
| 129 | +html_static_path = ["_static"] |
130 | 130 |
|
131 | 131 | # Add any extra paths that contain custom files (such as robots.txt or |
132 | 132 | # .htaccess) here, relative to this directory. These files are copied |
|
175 | 175 | # html_file_suffix = None |
176 | 176 |
|
177 | 177 | # Output file base name for HTML help builder. |
178 | | -htmlhelp_basename = 'python-docx-templatedoc' |
| 178 | +htmlhelp_basename = "python-docx-templatedoc" |
179 | 179 |
|
180 | 180 |
|
181 | 181 | # -- Options for LaTeX output --------------------------------------------- |
|
193 | 193 | # (source start file, target name, title, |
194 | 194 | # author, documentclass [howto, manual, or own class]). |
195 | 195 | latex_documents = [ |
196 | | - ('index', 'python-docx-template.tex', u'python-docx-template Documentation', |
197 | | - u'Eric Lapouyade', 'manual'), |
| 196 | + ( |
| 197 | + "index", |
| 198 | + "python-docx-template.tex", |
| 199 | + "python-docx-template Documentation", |
| 200 | + "Eric Lapouyade", |
| 201 | + "manual", |
| 202 | + ), |
198 | 203 | ] |
199 | 204 |
|
200 | 205 | # The name of an image file (relative to this directory) to place at the top of |
|
223 | 228 | # One entry per manual page. List of tuples |
224 | 229 | # (source start file, name, description, authors, manual section). |
225 | 230 | man_pages = [ |
226 | | - ('index', 'python-docx-template', u'python-docx-template Documentation', |
227 | | - [u'Eric Lapouyade'], 1) |
| 231 | + ( |
| 232 | + "index", |
| 233 | + "python-docx-template", |
| 234 | + "python-docx-template Documentation", |
| 235 | + ["Eric Lapouyade"], |
| 236 | + 1, |
| 237 | + ) |
228 | 238 | ] |
229 | 239 |
|
230 | 240 | # If true, show URL addresses after external links. |
|
237 | 247 | # (source start file, target name, title, author, |
238 | 248 | # dir menu entry, description, category) |
239 | 249 | texinfo_documents = [ |
240 | | - ('index', 'python-docx-template', u'python-docx-template Documentation', |
241 | | - u'Eric Lapouyade', 'python-docx-template', 'One line description of project.', |
242 | | - 'Miscellaneous'), |
| 250 | + ( |
| 251 | + "index", |
| 252 | + "python-docx-template", |
| 253 | + "python-docx-template Documentation", |
| 254 | + "Eric Lapouyade", |
| 255 | + "python-docx-template", |
| 256 | + "One line description of project.", |
| 257 | + "Miscellaneous", |
| 258 | + ), |
243 | 259 | ] |
244 | 260 |
|
245 | 261 | # Documents to append as an appendix to all manuals. |
|
0 commit comments