A thousand ways. One really good idea I read was that you write an empty script, which prints the instructions for each step and you press enter, it prints the next step. It can only print instructions at first, then later, you can write code to automate some (maybe even validate things) steps. Something like this:
def git_tag():
print("1. git tag the repository")
input("Press enter to continue")
def git_push():
print("2. git push the repository")
input("Press enter to continue")
def pip_deploy():
print("3. Deploy, run: python setup.py sdist upload")
input("Press enter to continue")
def main():
git_tag()
git_push()
pip_deploy()
As simple as that! Then later, you could write code for every step as you have time.