Want to make your python script / app into a pip installable package? So did I, and I keep forgetting when I need to update the versions.
I maintain IPTCInfo3, spry, itunizer, and riskroller.
Make sure to have a setup.py file that is formatted similar to this:
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()