pypi-publisher
Installation
SKILL.md
PyPI Publisher
Complete workflow for publishing Python packages to PyPI with best practices, error handling, and automation.
Critical Pre-Publish Checklist
ALWAYS run tests before publishing. Never skip this step.
- Run full test suite
python -m pytest tests/ -v --tb=short- All tests must pass
- Check code coverage if applicable
- Fix any failures before proceeding