Skip to content

Instantly share code, notes, and snippets.

@deep5050
Created September 6, 2023 11:43
Show Gist options
  • Save deep5050/b1836dae55a2cc3f79514050aae75388 to your computer and use it in GitHub Desktop.
Save deep5050/b1836dae55a2cc3f79514050aae75388 to your computer and use it in GitHub Desktop.
python build and publish instructions
python3 setup.py build
python3 setup.py install
python3 setup.py sdist
python3 setup.py bdist_wheel
#test upload
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
# test
pip install -i https://test.pypi.org/simple/ bingo-cli-test --user --no-cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment