mirror of
https://github.com/slgobinath/SafeEyes.git
synced 2024-12-28 00:10:44 +01:00
8 lines
219 B
Bash
8 lines
219 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf build/ dist/ safeeyes.egg-info/ .eggs/
|
||
|
|
||
|
python3 setup.py sdist bdist_wheel
|
||
|
twine upload --repository pypitest dist/safeeyes*.tar.gz
|
||
|
clear >$(tty)
|
||
|
twine upload --repository pypitest dist/safeeyes*.whl
|