build:
	python setup.py build

install:
	python setup.py install

.PHONY: clean
clean:
	find . -name \*.pyc -exec rm -rf {} +
	rm -rf build
