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.
This pull request introduces significant updates to the
pureshellPython package, including enhancements to its metadata and the addition of a GitHub Actions workflow for automated publishing to PyPI. The most important changes involve a major version update and a detailed description of the library's features, as well as automation for package deployment.Metadata updates:
pyproject.toml: Updated the package version from0.1.0to0.2.0, reflecting a major update. Expanded the description to provide a comprehensive overview of the library's purpose, features, and architectural benefits, emphasizing its support for the "Functional Core, Stateful Shell" pattern and key features like@shell_methodand@ruleset_provider.Automation for publishing:
.github/workflows/publish-to-pypi.yml: Added a GitHub Actions workflow to automate publishing the package to PyPI upon release creation. The workflow includes steps for repository checkout, Python setup, dependency installation, package building, and publishing using trusted publishing with PyPI.