|
12 | 12 |
|
13 | 13 | import os
|
14 | 14 | import sys
|
15 |
| -sys.path.insert(0, os.path.abspath('..')) |
| 15 | +sys.path.insert(0, os.path.abspath("..")) |
16 | 16 |
|
17 | 17 |
|
18 | 18 | # -- Project information -----------------------------------------------------
|
19 | 19 |
|
20 |
| -project = 'AutoHotkey.py' |
21 |
| -copyright = '2020 Sviatoslav Abakumov' |
22 |
| -author = 'Sviatoslav Abakumov' |
| 20 | +project = "AutoHotkey.py" |
| 21 | +copyright = "2020 Sviatoslav Abakumov" |
| 22 | +author = "Sviatoslav Abakumov" |
23 | 23 |
|
24 | 24 | # The full version, including alpha/beta/rc tags
|
25 |
| -release = '0.1.dev' |
| 25 | +release = "0.1.dev" |
26 | 26 |
|
27 | 27 |
|
28 | 28 | # -- General configuration ---------------------------------------------------
|
29 | 29 |
|
30 | 30 | # Add any Sphinx extension module names here, as strings. They can be
|
31 |
| -# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 31 | +# extensions coming with Sphinx (named "sphinx.ext.*") or your custom |
32 | 32 | # ones.
|
33 | 33 | extensions = [
|
34 | 34 | "sphinx.ext.autodoc",
|
|
40 | 40 | }
|
41 | 41 |
|
42 | 42 | # Add any paths that contain templates here, relative to this directory.
|
43 |
| -templates_path = ['_templates'] |
| 43 | +templates_path = ["_templates"] |
44 | 44 |
|
45 | 45 | # List of patterns, relative to source directory, that match files and
|
46 | 46 | # directories to ignore when looking for source files.
|
47 | 47 | # This pattern also affects html_static_path and html_extra_path.
|
48 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 48 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
49 | 49 |
|
50 |
| -autodoc_member_order = 'bysource' |
| 50 | +autodoc_member_order = "bysource" |
51 | 51 |
|
52 | 52 |
|
53 | 53 | # -- Options for HTML output -------------------------------------------------
|
54 | 54 |
|
55 | 55 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
56 | 56 | # a list of builtin themes.
|
57 |
| -html_theme = 'alabaster' |
| 57 | +html_theme = "alabaster" |
58 | 58 |
|
59 | 59 | # Theme options are theme-specific and customize the look and feel of a theme
|
60 | 60 | # further. For a list of options available for each theme, see the
|
|
73 | 73 | # Add any paths that contain custom static files (such as style sheets) here,
|
74 | 74 | # relative to this directory. They are copied after the builtin static files,
|
75 | 75 | # so a file named "default.css" will overwrite the builtin "default.css".
|
76 |
| -html_static_path = ['_static'] |
| 76 | +html_static_path = ["_static"] |
0 commit comments