summaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authordherrada <=>2020-05-18 19:01:50 -0400
committerdherrada <=>2020-05-18 19:01:50 -0400
commit0fa5f6a0dd72d98551079db070efcabdbd2ae2b1 (patch)
tree8de5959a69b4d42d527745ce42af48fc6fa48b28 /conf.py
parentcf524cb6b19dc971610452986f1ce8d1001d9d7e (diff)
parente67d6756d1dbfe2e7b61b1fbfc2357c3f1f56639 (diff)
Merge branch 'extract-types' of https://github.com/dherrada/circuitpython into extract-types
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/conf.py b/conf.py
index aea84dd21..d6fa8f7e5 100644
--- a/conf.py
+++ b/conf.py
@@ -71,11 +71,12 @@ extensions.append('autoapi.extension')
autoapi_type = 'python'
# Uncomment this if debugging autoapi
-# autoapi_keep_files = True
-autoapi_dirs = ['circuitpython-stubs']
+autoapi_keep_files = True
+autoapi_dirs = [os.path.join('circuitpython-stubs', x) for x in os.listdir('circuitpython-stubs')]
autoapi_add_toctree_entry = False
autoapi_options = ['members', 'undoc-members', 'private-members', 'show-inheritance', 'special-members', 'show-module-summary']
autoapi_template_dir = 'docs/autoapi/templates'
+autoapi_python_use_implicit_namespaces = True
# The encoding of source files.
#source_encoding = 'utf-8-sig'