Skip to content
Snippets Groups Projects
Commit 238a878e authored by Vadim Gubaidulin's avatar Vadim Gubaidulin
Browse files

changed documentation generation options

parent c53fac4e
No related branches found
No related tags found
1 merge request!13v0.7.0
......@@ -39,7 +39,14 @@ extensions = [
'sphinx.ext.viewcode',
'myst_parser'
]
autodoc_default_options = {
'member-order': 'bysource', # Keep the order of members as they appear in the source code
'undoc-members': True, # Do not show undocumented members
'private-members': True, # Do not show private members
'special-members': '__init__', # Document __init__ method
'show-inheritance': False, # Do not show base classes
}
add_module_names = False
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment