Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 269 Bytes

File metadata and controls

12 lines (9 loc) · 269 Bytes

Publishing update to Pypi

python3 -m venv venv
source venv/bin/activate

pip install --upgrade pip setuptools wheel build
python -m build
pip install twine
twine upload dist/*

# For TestPyPI:
twine upload --repository testpypi dist/*