Prepare workspace crates and client SDKs for registry publishing#247
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Prepares the Rust workspace crates and the JavaScript/Python client SDKs for registry publishing by tightening publish metadata, explicitly marking non-publishable crates, and improving SDK packaging/docs.
Changes:
- Mark internal/test-only Rust crates (and the GUI) as non-publishable via
publish = false. - Add missing crate metadata (
homepage,repository) to Rust crates intended for publishing. - Improve client SDK publishability/docs: add Python
README.md/LICENSEand wirereadmeintopyproject.toml; update JS README imports/examples to match subpath exports.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
paddler_tests/Cargo.toml |
Marks integration-test crate as non-publishable. |
paddler_test_cluster_harness/Cargo.toml |
Marks test harness crate as non-publishable. |
paddler_openai_response_format_validator/Cargo.toml |
Marks validator crate as non-publishable. |
paddler_gui/Cargo.toml |
Adds workspace metadata and marks GUI crate as non-publishable. |
paddler_client_python/README.md |
Adds PyPI-facing README with usage examples. |
paddler_client_python/pyproject.toml |
Sets Poetry readme to include README in published package metadata. |
paddler_client_python/LICENSE |
Adds Apache-2.0 license file for the Python distribution. |
paddler_client_javascript/README.md |
Updates import paths/examples to use subpath exports and current SSE state shape. |
paddler_cli/Cargo.toml |
Adds missing publish metadata fields (homepage, repository). |
paddler_cli_tests/Cargo.toml |
Marks CLI integration-test crate as non-publishable. |
paddler_bootstrap/Cargo.toml |
Adds missing publish metadata fields (homepage, repository). |
Cargo.toml |
Adjusts workspace dependency definition for the response-format validator crate. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| paddler_download_manager = { version = "4.0.0", path = "paddler_download_manager" } | ||
| paddler_messaging = { version = "4.0.0", path = "paddler_messaging" } | ||
| paddler_openai_response_format_validator = { version = "4.0.0", path = "paddler_openai_response_format_validator" } | ||
| paddler_openai_response_format_validator = { path = "paddler_openai_response_format_validator" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.