aboutsummaryrefslogtreecommitdiffstats
path: root/doc/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 952d230c8..69ff6f139 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -16,6 +16,7 @@ needs_sphinx = '1.5'
extensions = [
# Standard Sphinx extensions
'recommonmark',
+ 'sphinx.ext.autodoc',
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
@@ -27,6 +28,13 @@ extensions = [
'exec',
]
+autodoc_default_options = {
+ "members": True,
+ 'undoc-members': True,
+ #'private-members': True,
+ 'inherited-members': True,
+}
+
templates_path = ['_templates', '_themes']
# The suffix(es) of source filenames.