1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
all:
@echo "Targets:"
@echo ""
@echo " install Local install"
@echo " clean Cleanup"
@echo " build Clean build"
@echo " publish Clean build and publish to PyPi"
@echo ""
install:
python setup.py install
clean:
rm -rf ./wsaccel.egg-info
rm -rf ./build
rm -rf ./dist
find . -name "*.pyc" -exec rm -f {} \;
build:
python setup.py sdist
python setup.py bdist_egg
python setup.py bdist_wininst
publish:
python setup.py register
python setup.py sdist upload
python setup.py bdist_egg upload
python setup.py bdist_wininst upload
|