Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 382 Bytes

CLAUDE.md

File metadata and controls

23 lines (18 loc) · 382 Bytes

PyPI Build Instructions

Building and publishing to PyPI

1. Install build tools

pip install build twine

2. Generate distribution packages

python -m build

3. Upload to PyPI

python -m twine upload dist/*

4. Upload to TestPyPI (for testing before real release)

python -m twine upload --repository testpypi dist/*