Created
August 29, 2021 16:13
-
-
Save Sigmanificient/98d983851f038ba5793c0c647eaf95c1 to your computer and use it in GitHub Desktop.
Bat script to upload to pypi automatically with venv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd .. | |
venv\Scripts\python.exe -m setup sdist bdist_wheel | |
venv\Scripts\python.exe -m twine check dist/* | |
venv\Scripts\python.exe -m twine upload --repository-url https://upload.pypi.org/legacy/ dist/* -u %1 -p %2 --skip-existing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment