2021-11-18 01:15:49 +03:00
|
|
|
#!/bin/bash -x
|
|
|
|
|
|
|
|
rm -rf build
|
|
|
|
rm -rf dist
|
|
|
|
rm -rf *egg-info
|
|
|
|
|
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
|
|
|
|
# upload commands
|
|
|
|
python -m twine upload dist/*
|
2023-04-12 05:55:53 +03:00
|
|
|
#python -m twine upload --repository testpypi dist/*
|
2021-11-18 01:15:49 +03:00
|
|
|
|
2023-04-12 05:55:53 +03:00
|
|
|
# install from test pypi
|
|
|
|
#python3 -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ --no-binary :all: goodpoints==0.2.2
|