summaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authordherrada <33632497+dherrada@users.noreply.github.com>2020-05-15 18:17:23 -0400
committerGitHub <noreply@github.com>2020-05-15 18:17:23 -0400
commite67d6756d1dbfe2e7b61b1fbfc2357c3f1f56639 (patch)
treea30d1e6061c68149f2ad06a1d781863a415f6601 /conf.py
parentacf88d7c0089c732222740a26a1d73563d016a13 (diff)
parent0d8bca92e208e705150097d26db6a5390dc9eb9b (diff)
Merge branch 'master' 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'