aboutsummaryrefslogtreecommitdiff
path: root/Doc/source/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/source/conf.py')
-rw-r--r--Doc/source/conf.py11
1 files changed, 8 insertions, 3 deletions
diff --git a/Doc/source/conf.py b/Doc/source/conf.py
index 82a5d579..b95119db 100644
--- a/Doc/source/conf.py
+++ b/Doc/source/conf.py
@@ -30,9 +30,14 @@ needs_sphinx = "1.3"
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
-extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode", "sphinx.ext.napoleon", "sphinx.ext.coverage"]
+extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode", "sphinx.ext.napoleon", "sphinx.ext.coverage", "sphinx.ext.autosectionlabel"]
-autodoc_mock_imports = ["gtk"]
+autodoc_mock_imports = ["gtk", "reportlab"]
+
+autodoc_default_options = {
+ 'members': True,
+ 'inherited-members': True
+}
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
@@ -99,7 +104,7 @@ html_theme_options = {"display_version": False}
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ["_static"]
+# html_static_path = ["_static"]
html_favicon = "assets/img/favicon.ico"