Skip to content

Instantly share code, notes, and snippets.

@springcomp
Created February 26, 2023 17:02
Show Gist options
  • Save springcomp/a3e470270f24d3908bf5394073587e8d to your computer and use it in GitHub Desktop.
Save springcomp/a3e470270f24d3908bf5394073587e8d to your computer and use it in GitHub Desktop.
Upload Package to PyPI
#!/bin/bash
rm -rf dist/
python setup.py sdist
python setup.py bdist_wheel
## username: __token__
## password: API Key token
twine upload --repository testpypi dist/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment