Optimization Wrapper for Linear/Integer Programming
To update the version use bumpver as following
bumpver update --[patch|minor|major]
This will update the version, commits the changes and tags the repo. But doesn't push. Next use
git push origin --tags
To push the new tag
Make sure build and twine are already installed.
pip install build twine
To build the package navigate to the project directory and build the package using:
python -m build
Check the distribution files to be ok using:
twine check dist/*
At the end publish the package to PyPI using the following:
twine upload dist/*