fishyboteso/build.bat

8 lines
136 B
Batchfile
Raw Normal View History

@echo off
rd build dist /s /q
call activate ./venv
python ./setup.py sdist
python ./setup.py bdist_wheel
PAUSE
twine upload dist/*
PAUSE