mirror of
https://github.com/serengil/deepface.git
synced 2025-06-04 02:20:06 +00:00
11 lines
247 B
Bash
11 lines
247 B
Bash
cd ..
|
|
|
|
echo "deleting existing release related files"
|
|
rm -rf dist/*
|
|
rm -rf build/*
|
|
|
|
echo "creating a package for current release - pypi compatible"
|
|
python setup.py sdist bdist_wheel
|
|
|
|
echo "pushing the release to pypi"
|
|
python -m twine upload dist/* |