|
24 | 24 | sys.path.append(os.path.abspath("extensions")) |
25 | 25 |
|
26 | 26 | on_rtd = os.environ.get("READTHEDOCS") == "True" |
27 | | -project = 'TwitchIO' |
28 | | -copyright = '2021, TwitchIO' |
29 | | -author = 'TwitchIO' |
| 27 | +project = "TwitchIO" |
| 28 | +copyright = "2021, TwitchIO" |
| 29 | +author = "TwitchIO" |
30 | 30 |
|
31 | 31 | # The full version, including alpha/beta/rc tags |
32 | | -release = '2.1.3' |
| 32 | +release = "2.1.3" |
33 | 33 |
|
34 | 34 |
|
35 | 35 | # -- General configuration --------------------------------------------------- |
|
46 | 46 | ] |
47 | 47 |
|
48 | 48 | # Add any paths that contain templates here, relative to this directory. |
49 | | -templates_path = ['_templates'] |
| 49 | +templates_path = ["_templates"] |
50 | 50 |
|
51 | 51 | # List of patterns, relative to source directory, that match files and |
52 | 52 | # directories to ignore when looking for source files. |
53 | 53 | # This pattern also affects html_static_path and html_extra_path. |
54 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 54 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
55 | 55 |
|
56 | 56 |
|
57 | 57 | # -- Options for HTML output ------------------------------------------------- |
58 | 58 |
|
59 | 59 | # The theme to use for HTML and HTML Help pages. See the documentation for |
60 | 60 | # a list of builtin themes. |
61 | 61 | # |
62 | | -html_theme = 'furo' |
63 | | -#html_logo = "logo.png" |
| 62 | +html_theme = "furo" |
| 63 | +# html_logo = "logo.png" |
64 | 64 |
|
65 | 65 | html_theme_options = { |
66 | 66 | "sidebar_hide_name": True, |
|
72 | 72 | # relative to this directory. They are copied after the builtin static files, |
73 | 73 | # so a file named "default.css" will overwrite the builtin "default.css". |
74 | 74 | # These folders are copied to the documentation's HTML output |
75 | | -html_static_path = ['_static'] |
| 75 | +html_static_path = ["_static"] |
76 | 76 |
|
77 | 77 | # These paths are either relative to html_static_path |
78 | 78 | # or fully qualified paths (eg. https://...) |
79 | | -html_css_files = [ |
80 | | - 'css/custom.css' |
81 | | -] |
| 79 | +html_css_files = ["css/custom.css"] |
82 | 80 |
|
83 | 81 | if on_rtd: |
84 | 82 | extensions.append("sphinxcontrib.napoleon") |
|
0 commit comments