|
20 | 20 |
|
21 | 21 | # -- Project information -----------------------------------------------------
|
22 | 22 |
|
23 |
| -project = 'Faker Wi-Fi ESSID' |
24 |
| -copyright = '2022, Paul-Emmanuel Raoul' |
25 |
| -author = 'Paul-Emmanuel Raoul' |
| 23 | +project = "Faker Wi-Fi ESSID" |
| 24 | +copyright = "2022, Paul-Emmanuel Raoul" |
| 25 | +author = "Paul-Emmanuel Raoul" |
26 | 26 |
|
27 | 27 | # The full version, including alpha/beta/rc tags
|
28 | 28 | release = VERSION
|
|
34 | 34 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
35 | 35 | # ones.
|
36 | 36 | extensions = [
|
37 |
| - 'sphinx.ext.autodoc', |
| 37 | + "sphinx.ext.autodoc", |
38 | 38 | ]
|
39 | 39 |
|
40 | 40 | # Add any paths that contain templates here, relative to this directory.
|
41 |
| -templates_path = ['_templates'] |
| 41 | +templates_path = ["_templates"] |
42 | 42 |
|
43 | 43 | # The master toctree document.
|
44 |
| -master_doc = 'index' |
| 44 | +master_doc = "index" |
45 | 45 |
|
46 | 46 | # List of patterns, relative to source directory, that match files and
|
47 | 47 | # directories to ignore when looking for source files.
|
48 | 48 | # This pattern also affects html_static_path and html_extra_path.
|
49 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 49 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
50 | 50 |
|
51 | 51 |
|
52 | 52 | # -- Options for HTML output -------------------------------------------------
|
53 | 53 |
|
54 | 54 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
55 | 55 | # a list of builtin themes.
|
56 | 56 | #
|
57 |
| -html_theme = 'sphinx_rtd_theme' |
| 57 | +html_theme = "sphinx_rtd_theme" |
58 | 58 |
|
59 | 59 | # Add any paths that contain custom static files (such as style sheets) here,
|
60 | 60 | # relative to this directory. They are copied after the builtin static files,
|
61 | 61 | # so a file named "default.css" will overwrite the builtin "default.css".
|
62 |
| -html_static_path = ['_static'] |
| 62 | +html_static_path = ["_static"] |
63 | 63 |
|
64 | 64 | # -- Options for GitHub integration -------------------------------------------
|
65 | 65 |
|
66 | 66 | html_context = {
|
67 |
| - 'display_github': True, # Integrate GitHub |
68 |
| - 'github_user': 'SkypLabs', # Username |
69 |
| - 'github_repo': 'faker-wifi-essid', # Repo name |
70 |
| - 'github_version': 'develop', # Version |
71 |
| - 'conf_py_path': '/docs/', # Path in the checkout to the docs root |
| 67 | + "display_github": True, # Integrate GitHub |
| 68 | + "github_user": "SkypLabs", # Username |
| 69 | + "github_repo": "faker-wifi-essid", # Repo name |
| 70 | + "github_version": "develop", # Version |
| 71 | + "conf_py_path": "/docs/", # Path in the checkout to the docs root |
72 | 72 | }
|
0 commit comments