VERSION=$(shell awk 'BEGIN { FS = "=" }; $$1 == "version" { print $$2 }' metadata.txt)

clean:
	find lib -type f -name "*custom*" -exec rm -f {} \;
	find . -type f -name "*.pyc" -exec rm -f {} \;
	find . -type d -name "__pycache__" -exec rm -rf {} \;

zip:
	
	git archive --format zip --prefix "karika/" -o ../karika_$(VERSION).zip -v -9 HEAD
