Skip to content

Commit 1ed35a3

Browse files
committed
include more extensions within docs/conf.py
1 parent eedf98c commit 1ed35a3

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

docs/source/conf.py

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,22 @@
1414
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1515

1616
extensions = [
17-
'sphinx.ext.duration',
18-
'sphinx.ext.doctest',
19-
'sphinx.ext.autodoc',
20-
'sphinx.ext.autosummary',
17+
"sphinx.ext.autosummary",
18+
"sphinx.ext.autodoc",
19+
"sphinx.ext.mathjax",
20+
"sphinx.ext.viewcode",
21+
"sphinx.ext.napoleon",
22+
"sphinx.ext.intersphinx",
23+
"sphinx.ext.extlinks",
24+
"nbsphinx",
25+
"sphinx_copybutton",
2126
]
2227

28+
autosummary_generate = True
29+
napoleon_google_docstring = False
30+
napoleon_use_param = False
31+
napoleon_use_ivar = True
32+
2333
templates_path = ['_templates']
2434
exclude_patterns = []
2535

0 commit comments

Comments
 (0)