Publishing to PyPI
New versions of pybalmorel are distributed to PyPI. The steps below assume you are in the dev environment (pixi shell).
Steps
Bump the version in the following files (a project-wide find & replace works well):
pyproject.tomldocs/conf.pydocs/get_started/installation.md
Build the distribution:
python -m build
This creates a source archive and a wheel in the
dist/folder.Upload to PyPI using your PyPI token:
python -m twine upload dist/pybalmorel-X.Y.Z.tar.gz
You will need a PyPI account and an API token configured in
~/.pypircor passed interactively.