|
31 | 31 | extensions = []
|
32 | 32 |
|
33 | 33 | # Add any paths that contain templates here, relative to this directory.
|
34 |
| -templates_path = ['_templates'] |
| 34 | +templates_path = ["_templates"] |
35 | 35 |
|
36 | 36 | # The suffix(es) of source filenames.
|
37 | 37 | # You can specify multiple suffix as a list of string:
|
|
41 | 41 | # source_encoding = 'utf-8-sig'
|
42 | 42 |
|
43 | 43 | # The master toctree document.
|
44 |
| -master_doc = 'index' |
| 44 | +master_doc = "index" |
45 | 45 |
|
46 | 46 | # General information about the project.
|
47 |
| -project = u'django-oidc-provider' |
48 |
| -copyright = u'2025, Juan Ignacio Fiorentino' |
49 |
| -author = u'Juan Ignacio Fiorentino' |
| 47 | +project = "django-oidc-provider" |
| 48 | +copyright = "2025, Juan Ignacio Fiorentino" |
| 49 | +author = "Juan Ignacio Fiorentino" |
50 | 50 |
|
51 | 51 | # The version info for the project you're documenting, acts as replacement for
|
52 | 52 | # |version| and |release|, also used in various other places throughout the
|
53 | 53 | # built documents.
|
54 | 54 | #
|
55 | 55 | # The short X.Y version.
|
56 |
| -version = u'0.8' |
| 56 | +version = "0.8" |
57 | 57 | # The full version, including alpha/beta/rc tags.
|
58 |
| -release = u'0.8' |
| 58 | +release = "0.8" |
59 | 59 |
|
60 | 60 | # The language for content autogenerated by Sphinx. Refer to documentation
|
61 | 61 | # for a list of supported languages.
|
62 | 62 | #
|
63 | 63 | # This is also used if you do content translation via gettext catalogs.
|
64 | 64 | # Usually you set "language" from the command line for these cases.
|
65 |
| -language = 'en' |
| 65 | +language = "en" |
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:
|
|
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 |
| -exclude_patterns = ['_build'] |
| 75 | +exclude_patterns = ["_build"] |
76 | 76 |
|
77 | 77 | # The reST default role (used for this markup: `text`) to use for all
|
78 | 78 | # documents.
|
|
90 | 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 | 96 | # modindex_common_prefix = []
|
|
106 | 106 |
|
107 | 107 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
108 | 108 | # a list of builtin themes.
|
109 |
| -html_theme = 'sphinx_rtd_theme' |
| 109 | +html_theme = "sphinx_rtd_theme" |
110 | 110 |
|
111 | 111 | # Theme options are theme-specific and customize the look and feel of a theme
|
112 | 112 | # further. For a list of options available for each theme, see the
|
|
135 | 135 | # Add any paths that contain custom static files (such as style sheets) here,
|
136 | 136 | # relative to this directory. They are copied after the builtin static files,
|
137 | 137 | # so a file named "default.css" will overwrite the builtin "default.css".
|
138 |
| -html_static_path = ['_static'] |
| 138 | +html_static_path = ["_static"] |
139 | 139 |
|
140 | 140 | # Add any extra paths that contain custom files (such as robots.txt or
|
141 | 141 | # .htaccess) here, relative to this directory. These files are copied
|
|
198 | 198 | # html_search_scorer = 'scorer.js'
|
199 | 199 |
|
200 | 200 | # Output file base name for HTML help builder.
|
201 |
| -htmlhelp_basename = 'django-oidc-providerdoc' |
| 201 | +htmlhelp_basename = "django-oidc-providerdoc" |
202 | 202 |
|
203 | 203 | # -- Options for LaTeX output ---------------------------------------------
|
204 | 204 |
|
205 | 205 | latex_elements = {
|
206 | 206 | # The paper size ('letterpaper' or 'a4paper').
|
207 | 207 | # 'papersize': 'letterpaper',
|
208 |
| - |
209 | 208 | # The font size ('10pt', '11pt' or '12pt').
|
210 | 209 | # 'pointsize': '10pt',
|
211 |
| - |
212 | 210 | # Additional stuff for the LaTeX preamble.
|
213 | 211 | # 'preamble': '',
|
214 |
| - |
215 | 212 | # Latex figure (float) alignment
|
216 | 213 | # 'figure_align': 'htbp',
|
217 | 214 | }
|
|
220 | 217 | # (source start file, target name, title,
|
221 | 218 | # author, documentclass [howto, manual, or own class]).
|
222 | 219 | latex_documents = [
|
223 |
| - (master_doc, 'django-oidc-provider.tex', u'django-oidc-provider Documentation', |
224 |
| - u'Juan Ignacio Fiorentino', 'manual'), |
| 220 | + ( |
| 221 | + master_doc, |
| 222 | + "django-oidc-provider.tex", |
| 223 | + "django-oidc-provider Documentation", |
| 224 | + "Juan Ignacio Fiorentino", |
| 225 | + "manual", |
| 226 | + ), |
225 | 227 | ]
|
226 | 228 |
|
227 | 229 | # The name of an image file (relative to this directory) to place at the top of
|
|
250 | 252 | # One entry per manual page. List of tuples
|
251 | 253 | # (source start file, name, description, authors, manual section).
|
252 | 254 | man_pages = [
|
253 |
| - (master_doc, 'django-oidc-provider', u'django-oidc-provider Documentation', |
254 |
| - [author], 1) |
| 255 | + (master_doc, "django-oidc-provider", "django-oidc-provider Documentation", [author], 1) |
255 | 256 | ]
|
256 | 257 |
|
257 | 258 | # If true, show URL addresses after external links.
|
|
264 | 265 | # (source start file, target name, title, author,
|
265 | 266 | # dir menu entry, description, category)
|
266 | 267 | texinfo_documents = [
|
267 |
| - (master_doc, 'django-oidc-provider', u'django-oidc-provider Documentation', |
268 |
| - author, 'django-oidc-provider', 'One line description of project.', |
269 |
| - 'Miscellaneous'), |
| 268 | + ( |
| 269 | + master_doc, |
| 270 | + "django-oidc-provider", |
| 271 | + "django-oidc-provider Documentation", |
| 272 | + author, |
| 273 | + "django-oidc-provider", |
| 274 | + "One line description of project.", |
| 275 | + "Miscellaneous", |
| 276 | + ), |
270 | 277 | ]
|
271 | 278 |
|
272 | 279 | # Documents to append as an appendix to all manuals.
|
|
328 | 335 | # epub_post_files = []
|
329 | 336 |
|
330 | 337 | # A list of files that should not be packed into the epub file.
|
331 |
| -epub_exclude_files = ['search.html'] |
| 338 | +epub_exclude_files = ["search.html"] |
332 | 339 |
|
333 | 340 | # The depth of the table of contents in toc.ncx.
|
334 | 341 | # epub_tocdepth = 3
|
|
0 commit comments