|
18 | 18 |
|
19 | 19 | # -- Project information ----------------------------------------------------- |
20 | 20 |
|
21 | | -project = 'xyzspaces' |
22 | | -copyright = '2019-2021, HERE Europe B.V.' |
23 | | -author = 'HERE Europe B.V.' |
| 21 | +project = "xyzspaces" |
| 22 | +copyright = "2019-2021, HERE Europe B.V." |
| 23 | +author = "HERE Europe B.V." |
24 | 24 |
|
25 | 25 |
|
26 | 26 | # -- General configuration --------------------------------------------------- |
|
29 | 29 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
30 | 30 | # ones. |
31 | 31 | extensions = [ |
32 | | - 'sphinx.ext.autodoc', |
33 | | - 'sphinx.ext.viewcode', |
34 | | - 'sphinx.ext.todo', |
35 | | - 'sphinx.ext.autodoc.typehints', |
36 | | - 'sphinx_rtd_theme', |
37 | | - 'sphinx_thebe' |
| 32 | + "sphinx.ext.autodoc", |
| 33 | + "sphinx.ext.viewcode", |
| 34 | + "sphinx.ext.todo", |
| 35 | + "sphinx.ext.autodoc.typehints", |
| 36 | + "sphinx_rtd_theme", |
| 37 | + "sphinx_thebe", |
| 38 | + "sphinx_copybutton", |
38 | 39 | ] |
39 | 40 |
|
40 | 41 | # Add any paths that contain templates here, relative to this directory. |
41 | | -templates_path = ['_templates'] |
| 42 | +templates_path = ["_templates"] |
42 | 43 |
|
43 | 44 | # The language for content autogenerated by Sphinx. Refer to documentation |
44 | 45 | # for a list of supported languages. |
45 | 46 | # |
46 | 47 | # This is also used if you do content translation via gettext catalogs. |
47 | 48 | # Usually you set "language" from the command line for these cases. |
48 | | -language = 'en' |
| 49 | +language = "en" |
49 | 50 |
|
50 | 51 | # List of patterns, relative to source directory, that match files and |
51 | 52 | # directories to ignore when looking for source files. |
52 | 53 | # This pattern also affects html_static_path and html_extra_path. |
53 | | -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
| 54 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
54 | 55 |
|
55 | 56 | # -- Options for Sphinx-Thebe ------------------------------------------------ |
56 | 57 |
|
|
67 | 68 | # The theme to use for HTML and HTML Help pages. See the documentation for |
68 | 69 | # a list of builtin themes. |
69 | 70 | # |
70 | | -html_theme = 'sphinx_rtd_theme' |
| 71 | +html_theme = "sphinx_rtd_theme" |
71 | 72 |
|
72 | 73 | # Add any paths that contain custom static files (such as style sheets) here, |
73 | 74 | # relative to this directory. They are copied after the builtin static files, |
74 | 75 | # so a file named "default.css" will overwrite the builtin "default.css". |
75 | | -html_static_path = ['_static'] |
76 | | -master_doc = 'index' |
77 | | -pygments_style = 'sphinx' |
| 76 | +html_static_path = ["_static"] |
| 77 | +master_doc = "index" |
| 78 | +pygments_style = "sphinx" |
78 | 79 |
|
79 | 80 |
|
80 | 81 | # -- Extension configuration ------------------------------------------------- |
|
88 | 89 | # -- autodoc options configuration ------------------------------------------------- |
89 | 90 |
|
90 | 91 | autodoc_default_options = { |
91 | | - 'members': True, |
92 | | - 'undoc-members': True, |
93 | | - 'special-members': True, |
94 | | - 'show-inheritance': True, |
95 | | - 'member-order': 'bysource', |
96 | | - 'exclude-members': '__dict__,__weakref__,__module__' |
| 92 | + "members": True, |
| 93 | + "undoc-members": True, |
| 94 | + "special-members": True, |
| 95 | + "show-inheritance": True, |
| 96 | + "member-order": "bysource", |
| 97 | + "exclude-members": "__dict__,__weakref__,__module__", |
97 | 98 | } |
0 commit comments