|
12 | 12 | # |
13 | 13 | import os |
14 | 14 | import sys |
15 | | -sys.path.insert(0, os.path.abspath('../src')) |
| 15 | + |
| 16 | +sys.path.insert(0, os.path.abspath("../src")) |
16 | 17 |
|
17 | 18 |
|
18 | 19 | # -- Project information ----------------------------------------------------- |
19 | 20 |
|
20 | | -project = 'kiutils' |
21 | | -copyright = '2023, Marvin Mager' |
22 | | -author = 'Marvin Mager' |
| 21 | +project = "kiutils" |
| 22 | +copyright = "2023, Marvin Mager" |
| 23 | +author = "Marvin Mager" |
23 | 24 |
|
24 | 25 |
|
25 | 26 | # -- General configuration --------------------------------------------------- |
26 | 27 |
|
27 | 28 | # Add any Sphinx extension module names here, as strings. They can be |
28 | 29 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
29 | 30 | # ones. |
30 | | -extensions = [ |
31 | | - 'sphinx.ext.autodoc' |
32 | | -] |
| 31 | +extensions = ["sphinx.ext.autodoc"] |
33 | 32 |
|
34 | 33 | # Add any paths that contain templates here, relative to this directory. |
35 | | -templates_path = ['_templates'] |
| 34 | +templates_path = ["_templates"] |
36 | 35 |
|
37 | 36 | # List of patterns, relative to source directory, that match files and |
38 | 37 | # directories to ignore when looking for source files. |
39 | 38 | # This pattern also affects html_static_path and html_extra_path. |
40 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 39 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
41 | 40 |
|
42 | 41 | # Sort the documented members as they appear in the source |
43 | | -autodoc_member_order = 'bysource' |
| 42 | +autodoc_member_order = "bysource" |
44 | 43 |
|
45 | 44 |
|
46 | 45 | # -- Options for HTML output ------------------------------------------------- |
47 | 46 |
|
48 | 47 | # The theme to use for HTML and HTML Help pages. See the documentation for |
49 | 48 | # a list of builtin themes. |
50 | 49 | # |
51 | | -html_theme = 'sphinx_rtd_theme' |
| 50 | +html_theme = "sphinx_rtd_theme" |
52 | 51 |
|
53 | 52 | # Add any paths that contain custom static files (such as style sheets) here, |
54 | 53 | # relative to this directory. They are copied after the builtin static files, |
55 | 54 | # so a file named "default.css" will overwrite the builtin "default.css". |
56 | | -html_static_path = ['_static'] |
| 55 | +html_static_path = ["_static"] |
57 | 56 |
|
58 | 57 | # Options of RTD theme |
59 | 58 | html_theme_options = { |
60 | | - 'style_external_links': True, |
| 59 | + "style_external_links": True, |
61 | 60 | } |
0 commit comments