- in new dir:
git clone https://gitlab.com/vipy_public/apriltag_py.git

- add swabotics remote
git add remote upstream https://github.com/swatbotics/apriltag.git

- resolve merge conflicts where needed (bc== beyondcompare)
git mergetool

- check status
git status

- remove items we don't want to commit from staging

git rm --cached filepath

- if all ok
git commit

- adjust version info in file
subl setup.py

- check doc (formatting: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)
subl README.md

- build
python setup.py sdist

- upload to pypi (make sure credentials are in ~/.pypirc (check keepass entry and https://blog.jetbrains.com/pycharm/2017/05/how-to-publish-your-package-on-pypi/ if missing))
twine upload dist/*

- look if there and ok
https://pypi.org/project/apriltag/


