|
5 | 5 | # Add any Sphinx extension module names here, as strings. They can be |
6 | 6 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
7 | 7 | # ones. |
8 | | -extensions = [ |
9 | | - 'sphinx.ext.intersphinx', |
10 | | -] |
| 8 | +extensions = ["sphinx.ext.intersphinx"] |
11 | 9 |
|
12 | 10 | # Add any paths that contain templates here, relative to this directory. |
13 | | -templates_path = ['_templates'] |
| 11 | +templates_path = ["_templates"] |
14 | 12 |
|
15 | 13 | # The suffix(es) of source filenames. |
16 | 14 | # You can specify multiple suffix as a list of string: |
17 | 15 | # |
18 | 16 | # source_suffix = ['.rst', '.md'] |
19 | | -source_suffix = '.rst' |
| 17 | +source_suffix = ".rst" |
20 | 18 |
|
21 | 19 | # The master toctree document. |
22 | | -master_doc = 'index' |
| 20 | +master_doc = "index" |
23 | 21 |
|
24 | 22 | # General information about the project. |
25 | | -project = 'Python MSS' |
| 23 | +project = "Python MSS" |
26 | 24 | copyright = "2013-2018, Mickaël 'Tiger-222' Schoentgen & contributors" |
27 | | -author = 'Tiger-222' |
| 25 | +author = "Tiger-222" |
28 | 26 |
|
29 | 27 | # The version info for the project you're documenting, acts as replacement for |
30 | 28 | # |version| and |release|, also used in various other places throughout the |
31 | 29 | # built documents. |
32 | 30 | # |
33 | 31 | # The short X.Y version. |
34 | | -version = '3.3.0' |
| 32 | +version = "3.3.0" |
35 | 33 |
|
36 | 34 | # The full version, including alpha/beta/rc tags. |
37 | | -release = 'latest' |
| 35 | +release = "latest" |
38 | 36 |
|
39 | 37 | # The language for content autogenerated by Sphinx. Refer to documentation |
40 | 38 | # for a list of supported languages. |
|
49 | 47 | exclude_patterns = [] |
50 | 48 |
|
51 | 49 | # The name of the Pygments (syntax highlighting) style to use. |
52 | | -pygments_style = 'sphinx' |
| 50 | +pygments_style = "sphinx" |
53 | 51 |
|
54 | 52 | todo_include_todos = True |
55 | 53 |
|
|
58 | 56 |
|
59 | 57 | # The theme to use for HTML and HTML Help pages. See the documentation for |
60 | 58 | # a list of builtin themes. |
61 | | -html_theme = 'default' |
| 59 | +html_theme = "default" |
62 | 60 |
|
63 | 61 | # Output file base name for HTML help builder. |
64 | | -htmlhelp_basename = 'PythonMSSdoc' |
| 62 | +htmlhelp_basename = "PythonMSSdoc" |
65 | 63 |
|
66 | 64 |
|
67 | 65 | # -- Options for Epub output ---------------------------------------------- |
|
73 | 71 | epub_copyright = copyright |
74 | 72 |
|
75 | 73 | # A list of files that should not be packed into the epub file. |
76 | | -epub_exclude_files = ['search.html'] |
| 74 | +epub_exclude_files = ["search.html"] |
77 | 75 |
|
78 | 76 |
|
79 | 77 | # ---------------------------------------------- |
80 | 78 |
|
81 | 79 | # Example configuration for intersphinx: refer to the Python standard library. |
82 | | -intersphinx_mapping = {'https://docs.python.org/3/': None} |
| 80 | +intersphinx_mapping = {"https://docs.python.org/3/": None} |
0 commit comments