Skip to content

Instantly share code, notes, and snippets.

@gfranxman
Created April 15, 2015 19:17
Show Gist options
  • Save gfranxman/31d43601ea3a6d5de046 to your computer and use it in GitHub Desktop.
Save gfranxman/31d43601ea3a6d5de046 to your computer and use it in GitHub Desktop.
my pypi pub process
# build
python setup.py sdist
python setup.py bdist_wheel
read
#register with test system
# python setup.py register -r pypitest
# read
# upload to test system
python setup.py sdist upload -r pypitest
python setup.py bdist_wheel upload -r pypitest
read
# register with prod pypi
#python setup.py register -r pypi
# read
# uplaod to prod pypi
python setup.py sdist upload -r pypi
python setup.py bdist_wheel upload -r pypi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment