mirror of
https://github.com/JoelBender/bacpypes
synced 2025-09-28 22:15:23 +08:00
merge in the lastest stage to keep going
This commit is contained in:
commit
2615c20257
3
README.txt
Normal file
3
README.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
BACpypes
|
||||
|
||||
BACpypes provides a BACnet application layer and network layer written in Python for daemons, scripting, and graphical interfaces.
|
|
@ -1,8 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
for ver in 2.7 3.4; do
|
||||
sudo python$ver setup.py bdist_egg
|
||||
sudo python$ver setup.py bdist_wheel
|
||||
done
|
||||
twine upload dist/*
|
||||
# remove everything in the current dist/ directory
|
||||
[ -d dist ] && rm -Rfv dist
|
||||
|
||||
for ver in 2.7 3.4; do
|
||||
python$ver setup.py bdist_egg
|
||||
python$ver setup.py bdist_wheel
|
||||
done
|
||||
|
||||
read -p "Upload to PyPI? [y/n/x] " yesno || exit 1
|
||||
|
||||
if [ "$yesno" = "y" ] ;
|
||||
then
|
||||
twine upload dist/*
|
||||
elif [ "$yesno" = "n" ] ;
|
||||
then
|
||||
echo "Skipped..."
|
||||
else
|
||||
echo "exit..."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
[wheel]
|
||||
universal = 1
|
||||
|
||||
[flake8]
|
||||
ignore = E123,E221,E226,E302,E41,E701
|
||||
|
|
Loading…
Reference in New Issue
Block a user