mirror of
https://github.com/TREX-CoE/trexio.git
synced 2024-11-04 05:03:58 +01:00
28 lines
867 B
Bash
Executable File
28 lines
867 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
#source version.py
|
|
|
|
python3 -m pip install --upgrade setuptools wheel twine
|
|
#python3 -s setup.py --no-user-cfg build
|
|
python3 -s setup.py build
|
|
python3 setup.py sdist bdist_wheel
|
|
python3 -m pip install dist/pytrexio-0.1-*.whl --force-reinstall
|
|
|
|
# remove
|
|
#python3 -m pip uninstall pytrexio
|
|
|
|
#python3 -m twine upload dist/pytrexio-0.1.tar.gz
|
|
|
|
# NOTE:I get an error:
|
|
# Binary wheel 'pytrexio-0.1-cp38-cp38-linux_x86_64.whl' has an unsupported platform tag 'linux_x86_64'.
|
|
# when uploading the wheel instead of the tar.gz file to testpypi
|
|
# This is a well-known issue, see https://stackoverflow.com/questions/59451069/binary-wheel-cant-be-uploaded-on-pypi-using-twine
|
|
|
|
#python3 -m twine upload --repository testpypi dist/pytrexio-0.1.tar.gz
|
|
|
|
rm -rf build pytrexio.egg-info
|
|
rm -rf dist
|