|
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 |
|
17 | 18 |
|
18 | 19 | # -- Project information -----------------------------------------------------
|
19 | 20 |
|
20 |
| -project = 'Nucleus' |
21 |
| -copyright = '2021, Scale' |
22 |
| -author = 'Scale' |
| 21 | +project = "Nucleus" |
| 22 | +copyright = "2021, Scale" |
| 23 | +author = "Scale" |
23 | 24 |
|
24 | 25 | # The full version, including alpha/beta/rc tags
|
25 | 26 | from nucleus import __version__
|
| 27 | + |
26 | 28 | release = "v" + str(__version__)
|
27 | 29 |
|
28 | 30 |
|
|
32 | 34 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
33 | 35 | # ones.
|
34 | 36 | extensions = [
|
35 |
| - 'sphinx.ext.autodoc', |
36 |
| - 'sphinx.ext.autosummary', |
| 37 | + "sphinx.ext.autodoc", |
| 38 | + "sphinx.ext.autosummary", |
37 | 39 | ]
|
38 | 40 |
|
39 | 41 | # Add any paths that contain templates here, relative to this directory.
|
40 |
| -templates_path = ['_templates'] |
| 42 | +templates_path = ["_templates"] |
41 | 43 |
|
42 | 44 | # List of patterns, relative to source directory, that match files and
|
43 | 45 | # directories to ignore when looking for source files.
|
|
50 | 52 | # The theme to use for HTML and HTML Help pages. See the documentation for
|
51 | 53 | # a list of builtin themes.
|
52 | 54 | #
|
53 |
| -html_theme = 'furo' |
| 55 | +html_theme = "furo" |
54 | 56 |
|
55 | 57 | # Add any paths that contain custom static files (such as style sheets) here,
|
56 | 58 | # relative to this directory. They are copied after the builtin static files,
|
57 | 59 | # so a file named "default.css" will overwrite the builtin "default.css".
|
58 |
| -html_static_path = ['_static'] |
| 60 | +html_static_path = ["_static"] |
59 | 61 |
|
60 | 62 | autosummary_generate = True
|
61 | 63 | autosummary_imported_members = True
|
0 commit comments