diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 5 | ||||
| -rw-r--r-- | docs/index.rst | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index 2d1ed09..ef2a272 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,11 +38,14 @@ author = 'Scott Gasch' # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.doctest', 'sphinx.ext.autodoc', + 'sphinx.ext.doctest', + 'sphinx.ext.napoleon', 'sphinx.ext.viewcode', ] +autodoc_typehints = "both" + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/docs/index.rst b/docs/index.rst index 6e6da4d..3d9731e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -7,7 +7,7 @@ Welcome to Scott's Python Utils's documentation! ================================================ .. toctree:: - :maxdepth: 2 + :maxdepth: 3 :caption: Contents: modules |
