Answers for "upload to pypi"

2

pypi release

python3 setup.py sdist bdist_wheel
twine upload dist/*
Posted by: Guest on August-22-2020
0

upload to pypi

pip install --upgrade twine
python setup.py sdist
twine check dist/*
twine upload dist/*
Posted by: Guest on November-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language