diff options
| author | dherrada <=> | 2020-05-18 19:01:50 -0400 |
|---|---|---|
| committer | dherrada <=> | 2020-05-18 19:01:50 -0400 |
| commit | 0fa5f6a0dd72d98551079db070efcabdbd2ae2b1 (patch) | |
| tree | 8de5959a69b4d42d527745ce42af48fc6fa48b28 /conf.py | |
| parent | cf524cb6b19dc971610452986f1ce8d1001d9d7e (diff) | |
| parent | e67d6756d1dbfe2e7b61b1fbfc2357c3f1f56639 (diff) | |
Merge branch 'extract-types' of https://github.com/dherrada/circuitpython into extract-types
Diffstat (limited to 'conf.py')
| -rw-r--r-- | conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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' |
