1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-09-28 22:15:23 +08:00
bacpypes/release_to_pypi.sh
2015-08-14 21:08:31 -04:00

11 lines
155 B
Bash
Executable File

#!/bin/bash
python setup.py sdist
for ver in 2.7 3.4; do
python$ver setup.py bdist_egg
python$ver setup.py bdist_wheel
done
twine upload dist/*