|
1 |
| -# -*- coding: utf-8 -*- |
2 |
| -# |
3 | 1 | # testcontainers documentation build configuration file, created by
|
4 | 2 | # sphinx-quickstart on Tue Mar 21 21:09:48 2017.
|
5 | 3 | #
|
|
31 | 29 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
32 | 30 | # ones.
|
33 | 31 | extensions = [
|
34 |
| - 'sphinx.ext.autodoc', |
35 |
| - 'sphinx.ext.doctest', |
36 |
| - 'sphinx.ext.napoleon', |
| 32 | + "sphinx.ext.autodoc", |
| 33 | + "sphinx.ext.doctest", |
| 34 | + "sphinx.ext.napoleon", |
37 | 35 | ]
|
38 | 36 |
|
39 | 37 | # Configure autodoc to avoid excessively long fully-qualified names.
|
40 | 38 | add_module_names = False
|
41 | 39 | autodoc_typehints_format = "short"
|
42 | 40 |
|
43 | 41 | # Add any paths that contain templates here, relative to this directory.
|
44 |
| -templates_path = ['_templates'] |
| 42 | +templates_path = ["_templates"] |
45 | 43 |
|
46 | 44 | # The suffix(es) of source filenames.
|
47 | 45 | # You can specify multiple suffix as a list of string:
|
48 | 46 | #
|
49 | 47 | # source_suffix = ['.rst', '.md']
|
50 |
| -source_suffix = '.rst' |
| 48 | +source_suffix = ".rst" |
51 | 49 |
|
52 | 50 | # The master toctree document.
|
53 |
| -master_doc = 'INDEX' |
| 51 | +master_doc = "INDEX" |
54 | 52 |
|
55 | 53 | # General information about the project.
|
56 |
| -project = u'testcontainers' |
57 |
| -copyright = u'2017, Sergey Pirogov' |
58 |
| -author = u'Sergey Pirogov' |
| 54 | +project = "testcontainers" |
| 55 | +copyright = "2017, Sergey Pirogov" # noqa: A001 |
| 56 | +author = "Sergey Pirogov" |
59 | 57 |
|
60 | 58 | # The version info for the project you're documenting, acts as replacement for
|
61 | 59 | # |version| and |release|, also used in various other places throughout the
|
62 | 60 | # built documents.
|
63 | 61 | #
|
64 | 62 | # The short X.Y version.
|
65 |
| -version = u'2.0.0' |
| 63 | +version = "2.0.0" |
66 | 64 | # The full version, including alpha/beta/rc tags.
|
67 |
| -release = u'2.0.0' |
| 65 | +release = "2.0.0" |
68 | 66 |
|
69 | 67 | # The language for content autogenerated by Sphinx. Refer to documentation
|
70 | 68 | # for a list of supported languages.
|
71 | 69 | #
|
72 | 70 | # This is also used if you do content translation via gettext catalogs.
|
73 | 71 | # Usually you set "language" from the command line for these cases.
|
74 |
| -language = 'en' |
| 72 | +language = "en" |
75 | 73 |
|
76 | 74 | # List of patterns, relative to source directory, that match files and
|
77 | 75 | # directories to ignore when looking for source files.
|
78 | 76 | # This patterns also effect to html_static_path and html_extra_path
|
79 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', "meta/README.rst", '.venv'] |
| 77 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "meta/README.rst", ".venv"] |
80 | 78 |
|
81 | 79 | # The name of the Pygments (syntax highlighting) style to use.
|
82 |
| -pygments_style = 'sphinx' |
| 80 | +pygments_style = "sphinx" |
83 | 81 |
|
84 | 82 | # If true, `todo` and `todoList` produce output, else they produce nothing.
|
85 | 83 | todo_include_todos = False
|
|
90 | 88 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
91 | 89 | # a list of builtin themes.
|
92 | 90 | #
|
93 |
| -html_theme = 'alabaster' |
| 91 | +html_theme = "alabaster" |
94 | 92 |
|
95 | 93 | # Theme options are theme-specific and customize the look and feel of a theme
|
96 | 94 | # further. For a list of options available for each theme, see the
|
|
107 | 105 | # -- Options for HTMLHelp output ------------------------------------------
|
108 | 106 |
|
109 | 107 | # Output file base name for HTML help builder.
|
110 |
| -htmlhelp_basename = 'testcontainersdoc' |
| 108 | +htmlhelp_basename = "testcontainersdoc" |
111 | 109 |
|
112 | 110 |
|
113 | 111 | # -- Options for LaTeX output ---------------------------------------------
|
|
116 | 114 | # The paper size ('letterpaper' or 'a4paper').
|
117 | 115 | #
|
118 | 116 | # 'papersize': 'letterpaper',
|
119 |
| - |
120 | 117 | # The font size ('10pt', '11pt' or '12pt').
|
121 | 118 | #
|
122 | 119 | # 'pointsize': '10pt',
|
123 |
| - |
124 | 120 | # Additional stuff for the LaTeX preamble.
|
125 | 121 | #
|
126 | 122 | # 'preamble': '',
|
127 |
| - |
128 | 123 | # Latex figure (float) alignment
|
129 | 124 | #
|
130 | 125 | # 'figure_align': 'htbp',
|
|
134 | 129 | # (source start file, target name, title,
|
135 | 130 | # author, documentclass [howto, manual, or own class]).
|
136 | 131 | latex_documents = [
|
137 |
| - (master_doc, 'testcontainers.tex', u'testcontainers Documentation', |
138 |
| - u'Sergey Pirogov', 'manual'), |
| 132 | + (master_doc, "testcontainers.tex", "testcontainers Documentation", "Sergey Pirogov", "manual"), |
139 | 133 | ]
|
140 | 134 |
|
141 | 135 |
|
142 | 136 | # -- Options for manual page output ---------------------------------------
|
143 | 137 |
|
144 | 138 | # One entry per manual page. List of tuples
|
145 | 139 | # (source start file, name, description, authors, manual section).
|
146 |
| -man_pages = [ |
147 |
| - (master_doc, 'testcontainers', u'testcontainers Documentation', |
148 |
| - [author], 1) |
149 |
| -] |
| 140 | +man_pages = [(master_doc, "testcontainers", "testcontainers Documentation", [author], 1)] |
150 | 141 |
|
151 | 142 |
|
152 | 143 | # -- Options for Texinfo output -------------------------------------------
|
|
155 | 146 | # (source start file, target name, title, author,
|
156 | 147 | # dir menu entry, description, category)
|
157 | 148 | texinfo_documents = [
|
158 |
| - (master_doc, 'testcontainers', u'testcontainers Documentation', |
159 |
| - author, 'testcontainers', 'One line description of project.', |
160 |
| - 'Miscellaneous'), |
| 149 | + ( |
| 150 | + master_doc, |
| 151 | + "testcontainers", |
| 152 | + "testcontainers Documentation", |
| 153 | + author, |
| 154 | + "testcontainers", |
| 155 | + "One line description of project.", |
| 156 | + "Miscellaneous", |
| 157 | + ), |
161 | 158 | ]
|
0 commit comments