|
17 | 17 |
|
18 | 18 | # -- Project information -----------------------------------------------------
|
19 | 19 |
|
20 |
| -project = 'gwpv' |
21 |
| -release = '0.3.0' |
22 |
| -copyright = '2022, Nils Vu' |
23 |
| -author = 'Nils Vu' |
24 |
| -repository = 'https://github.com/nilsvu/gwpv/' |
| 20 | +project = "gwpv" |
| 21 | +release = "0.3.0" |
| 22 | +copyright = "2022, Nils Vu" |
| 23 | +author = "Nils Vu" |
| 24 | +repository = "https://github.com/nilsvu/gwpv/" |
25 | 25 |
|
26 | 26 |
|
27 | 27 | # -- General configuration ---------------------------------------------------
|
|
30 | 30 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
31 | 31 | # ones.
|
32 | 32 | extensions = [
|
33 |
| - 'myst_parser', |
34 |
| - 'sphinx_copybutton', |
35 |
| - 'sphinx.ext.githubpages', |
| 33 | + "myst_parser", |
| 34 | + "sphinx_copybutton", |
| 35 | + "sphinx.ext.githubpages", |
36 | 36 | # 'sphinx.ext.autodoc',
|
37 | 37 | # 'sphinx.ext.intersphinx',
|
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 | # List of patterns, relative to source directory, that match files and
|
44 | 44 | # directories to ignore when looking for source files.
|
45 | 45 | # This pattern also affects html_static_path and html_extra_path.
|
46 |
| -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 46 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
47 | 47 |
|
48 | 48 |
|
49 | 49 | # -- Options for HTML output -------------------------------------------------
|
50 | 50 |
|
51 | 51 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
52 | 52 | # a list of builtin themes.
|
53 | 53 | #
|
54 |
| -html_theme = 'furo' |
| 54 | +html_theme = "furo" |
55 | 55 |
|
56 | 56 | # Add any paths that contain custom static files (such as style sheets) here,
|
57 | 57 | # relative to this directory. They are copied after the builtin static files,
|
58 | 58 | # so a file named "default.css" will overwrite the builtin "default.css".
|
59 |
| -html_static_path = ['_static'] |
| 59 | +html_static_path = ["_static"] |
60 | 60 | html_css_files = [
|
61 |
| - 'style.css', |
| 61 | + "style.css", |
62 | 62 | ]
|
63 | 63 |
|
64 | 64 | html_title = f"{project} v{release}"
|
|
0 commit comments