mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Python: Packaging fixes (#1056)
* small updates to setup * post1 * reset version * updated package status
This commit is contained in:
committed by
GitHub
Unverified
parent
08b602c290
commit
2575e8cab0
@@ -24,7 +24,6 @@ async def generate_af_docs(root_path: Path):
|
||||
"name": "agent-framework",
|
||||
"version": agent_framework_version,
|
||||
"install_type": "pypi",
|
||||
"extras": ["all"],
|
||||
},
|
||||
"sphinx_extensions": [
|
||||
"sphinxcontrib.autodoc_pydantic",
|
||||
@@ -32,28 +31,28 @@ async def generate_af_docs(root_path: Path):
|
||||
"sphinx.ext.autosummary"
|
||||
],
|
||||
"extension_config": {
|
||||
"napoleon_google_docstring": True,
|
||||
"napoleon_preprocess_types": True,
|
||||
"napoleon_use_param": True,
|
||||
"napoleon_google_docstring": 1,
|
||||
"napoleon_preprocess_types": 1,
|
||||
"napoleon_use_param": 1,
|
||||
"autodoc_pydantic_field_doc_policy": "both",
|
||||
"autodoc_pydantic_model_show_json": False,
|
||||
"autodoc_pydantic_model_show_config_summary": True,
|
||||
"autodoc_pydantic_model_show_field_summary": True,
|
||||
"autodoc_pydantic_model_hide_paramlist": False,
|
||||
"autodoc_pydantic_model_show_json": 0,
|
||||
"autodoc_pydantic_model_show_config_summary": 1,
|
||||
"autodoc_pydantic_model_show_field_summary": 1,
|
||||
"autodoc_pydantic_model_hide_paramlist": 0,
|
||||
"autodoc_pydantic_model_show_json_error_strategy": "coerce",
|
||||
"autodoc_pydantic_settings_show_config_summary": True,
|
||||
"autodoc_pydantic_settings_show_field_summary": True,
|
||||
"python_use_unqualified_type_names": True,
|
||||
"autodoc_preserve_defaults": True,
|
||||
"autodoc_pydantic_settings_show_config_summary": 1,
|
||||
"autodoc_pydantic_settings_show_field_summary": 1,
|
||||
"python_use_unqualified_type_names": 1,
|
||||
"autodoc_preserve_defaults": 1,
|
||||
"autodoc_class_signature": "separated",
|
||||
"autodoc_typehints": "both",
|
||||
"autodoc_typehints_format": "fully-qualified",
|
||||
"autodoc_default_options": {
|
||||
"members": True,
|
||||
"members": 1,
|
||||
"member-order": "alphabetical",
|
||||
"undoc-members": True,
|
||||
"show-inheritance": True,
|
||||
"imported-members": True,
|
||||
"undoc-members": 1,
|
||||
"show-inheritance": 1,
|
||||
"imported-members": 1,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user