python -m venv venv
source venv/bin/activate
pip install -e .
pytest
git tag v0.3.0
git push origin v0.3.0(according to https://packaging.python.org/en/latest/tutorials/packaging-projects/)
pip install build twine
python3 -m build
vi ~/.pypirc
twine check dist/*Now, for next time.. test install the package in a new vanilla environment, then..
twine upload dist/*- rebase development upon main
- bump the pyproject version number to a new
-dev