Add deprecation directives, add indexing, only autodoc members

This commit is contained in:
Mark Backman
2025-07-02 13:57:57 -07:00
parent e19c5464fe
commit abee0f853c
17 changed files with 132 additions and 44 deletions

View File

@@ -38,9 +38,8 @@ napoleon_include_init_with_doc = True
autodoc_default_options = {
"members": True,
"member-order": "bysource",
"undoc-members": True,
"undoc-members": False,
"exclude-members": "__weakref__,model_config",
"no-index": True,
"show-inheritance": True,
}