Files
deb-python-cassandra-driver/Makefile
2014-07-08 09:14:43 -07:00

15 lines
167 B
Makefile

clean:
find . -name *.pyc -delete
rm -rf cqlengine/__pycache__
build: clean
python setup.py build
release: clean
python setup.py sdist upload
.PHONY: build