You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh -ex
|
|
|
|
unset PYTHONPATH
|
|
python3 -m venv build/venv
|
|
. build/venv/bin/activate
|
|
|
|
pip install --upgrade build twine
|
|
python -m build
|
|
twine check dist/*
|
|
|
|
echo 'When ready, upload to PyPI using: build/venv/bin/twine upload dist/*'
|