Python: Fix ag-ui examples packaging for PyPI publish (#1953)

* Fix ag-ui examples packaging for PyPI publish

* Fix markdown links
This commit is contained in:
Evan Mattson
2025-11-06 11:31:24 +09:00
committed by GitHub
Unverified
parent 6fec8a61e3
commit ac018f700b
23 changed files with 6 additions and 7 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ add_agent_framework_fastapi_endpoint(app, agent, "/")
## Documentation
- **[Getting Started Tutorial](getting_started/)** - Step-by-step guide to building your first AG-UI server and client
- **[Examples](examples/)** - Complete examples for AG-UI features
- **[Examples](agent_framework_ag_ui_examples/)** - Complete examples for AG-UI features
## Features
@@ -64,7 +64,7 @@ The package uses a clean, orchestrator-based architecture:
## Next Steps
1. **New to AG-UI?** Start with the [Getting Started Tutorial](getting_started/)
2. **Want to see examples?** Check out the [Examples](examples/) for AG-UI features
2. **Want to see examples?** Check out the [Examples](agent_framework_ag_ui_examples/) for AG-UI features
## License
@@ -629,7 +629,7 @@ Now that you understand the basics of AG-UI, you can:
## Additional Resources
- [AG-UI Examples](../examples/README.md): Complete working examples for all 7 features
- [AG-UI Examples](../agent_framework_ag_ui_examples/README.md): Complete working examples for all 7 features
- [Agent Framework Documentation](../../core/README.md): Learn more about creating agents
- [AG-UI Protocol Spec](https://docs.ag-ui.com/): Official protocol documentation
+2 -3
View File
@@ -1,6 +1,6 @@
[project]
name = "agent-framework-ag-ui"
version = "1.0.0b251106"
version = "1.0.0b251106.post1"
description = "AG-UI protocol integration for Agent Framework"
readme = "README.md"
license-files = ["LICENSE"]
@@ -40,8 +40,7 @@ requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["agent_framework_ag_ui"]
force-include = { "examples" = "agent_framework_ag_ui_examples" }
packages = ["agent_framework_ag_ui", "agent_framework_ag_ui_examples"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
+1 -1
View File
@@ -193,7 +193,7 @@ requires-dist = [
[[package]]
name = "agent-framework-ag-ui"
version = "1.0.0b251106"
version = "1.0.0b251106.post1"
source = { editable = "packages/ag-ui" }
dependencies = [
{ name = "ag-ui-protocol", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or sys_platform == 'win32'" },