|
12 | 12 | # |
13 | 13 | import os |
14 | 14 | import sys |
15 | | -sys.path.insert(0, os.path.abspath('..')) |
| 15 | + |
| 16 | +sys.path.insert(0, os.path.abspath("..")) |
16 | 17 | from lokalise._version import __version__ |
17 | 18 |
|
18 | 19 | # -- Project information ----------------------------------------------------- |
19 | | -project = 'python-lokalise-api' |
20 | | -copyright = '2023, Lokalise group, Ilya Krukowski' |
21 | | -author = 'Lokalise group, Ilya Krukowski' |
| 20 | +project = "python-lokalise-api" |
| 21 | +copyright = "2023, Lokalise group, Ilya Krukowski" |
| 22 | +author = "Lokalise group, Ilya Krukowski" |
22 | 23 |
|
23 | 24 | # The full version, including alpha/beta/rc tags |
24 | 25 | release = __version__ |
25 | 26 | version = __version__ |
26 | 27 |
|
27 | 28 | # -- General configuration --------------------------------------------------- |
28 | | -master_doc = 'index' |
| 29 | +master_doc = "index" |
29 | 30 |
|
30 | 31 | # Add any Sphinx extension module names here, as strings. They can be |
31 | 32 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
32 | 33 | # ones. |
33 | | -extensions = [ |
34 | | -] |
| 34 | +extensions = [] |
35 | 35 |
|
36 | 36 | # Add any paths that contain templates here, relative to this directory. |
37 | | -templates_path = ['_templates'] |
| 37 | +templates_path = ["_templates"] |
38 | 38 |
|
39 | 39 | # List of patterns, relative to source directory, that match files and |
40 | 40 | # directories to ignore when looking for source files. |
41 | 41 | # This pattern also affects html_static_path and html_extra_path. |
42 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 42 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
43 | 43 |
|
44 | 44 |
|
45 | 45 | # -- Options for HTML output ------------------------------------------------- |
46 | 46 |
|
47 | 47 | # The theme to use for HTML and HTML Help pages. See the documentation for |
48 | 48 | # a list of builtin themes. |
49 | 49 |
|
50 | | -html_theme = 'alabaster' |
| 50 | +html_theme = "alabaster" |
51 | 51 |
|
52 | 52 | # Add any paths that contain custom static files (such as style sheets) here, |
53 | 53 | # relative to this directory. They are copied after the builtin static files, |
54 | 54 | # so a file named "default.css" will overwrite the builtin "default.css". |
55 | | -html_static_path = ['_static'] |
| 55 | +html_static_path = ["_static"] |
56 | 56 |
|
57 | | -html_title = 'Python Lokalise API client' |
58 | | -html_short_title = 'Lokalise API client' |
| 57 | +html_title = "Python Lokalise API client" |
| 58 | +html_short_title = "Lokalise API client" |
59 | 59 |
|
60 | 60 | html_sidebars = { |
61 | 61 | "index": [ |
62 | | - 'about.html', |
| 62 | + "about.html", |
63 | 63 | "globaltoc.html", |
64 | 64 | "links.html", |
65 | 65 | "slim_searchbox.html", |
66 | 66 | ], |
67 | 67 | "**": [ |
68 | | - 'about.html', |
| 68 | + "about.html", |
69 | 69 | "globaltoc.html", |
70 | 70 | "relations.html", |
71 | 71 | "links.html", |
|
74 | 74 | } |
75 | 75 |
|
76 | 76 | html_theme_options = { |
77 | | - 'logo': 'lok_logo.png', |
78 | | - 'github_user': 'lokalise', |
79 | | - 'github_repo': 'python-lokalise-api', |
80 | | - 'github_button': 'true', |
81 | | - 'show_powered_by': 'false' |
| 77 | + "logo": "lok_logo.png", |
| 78 | + "github_user": "lokalise", |
| 79 | + "github_repo": "python-lokalise-api", |
| 80 | + "github_button": "true", |
| 81 | + "show_powered_by": "false", |
82 | 82 | } |
0 commit comments