mirror of
https://github.com/JoelBender/bacpypes
synced 2025-09-28 22:15:23 +08:00
11 lines
155 B
Bash
Executable File
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/*
|
|
|