This commit is contained in:
Hykilpikonna
2021-12-27 11:56:23 -05:00
parent 331171a61f
commit 5e021df11a
2 changed files with 30 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
$ErrorActionPreference = "Stop"
$VERSION = $(python -c 'import hypy_utils; print(hypy_utils.__version__)')
Write-Output "$VERSION"
# Build
python setup.py sdist bdist_wheel
# Check
python -m twine check dist/*
# Upload
python -m twine upload dist/*