1
0
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:
Joel Bender 2015-08-14 22:38:58 -04:00
commit 2615c20257
4 changed files with 24 additions and 7 deletions

3
README.txt Normal file
View File

@ -0,0 +1,3 @@
BACpypes
BACpypes provides a BACnet application layer and network layer written in Python for daemons, scripting, and graphical interfaces.

View File

@ -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

View File

@ -1,5 +1,4 @@
[wheel]
universal = 1
[flake8]
ignore = E123,E221,E226,E302,E41,E701

View File

@ -25,7 +25,7 @@ test_requirements = [
setup(
name='bacpypes',
version="0.13.1",
version="0.13.2",
description="Testing multiple versions of python",
long_description="This is a long line of text",
author="Joel Bender",