Skip to content

Upload to PyPI using Twine

Lukas Valentin Graf edited this page Nov 24, 2023 · 1 revision

Follow these steps to do the upload eodal to pypi using Twine

  1. Step: Install build
pip install build
  1. Execute build in the root of the EOdal repository
python3 -m build --wheel .
  1. Upload to pypi (assuming you have configured pypi in ~.pypirc):
twine upload --repository pypi dist/* --verbose
Clone this wiki locally