.PHONY: install clean

install:
	python3 setup.py install

clean:
	rm -rf ./__pycache__/
	rm -rf ./*/__pycache__/
	rm -rf ./*/*/__pycache__/
	rm -rf ./*/*/*/__pycache__/
	rm -rf ./*.pyc
	rm -rf ./*/*.pyc
	rm -rf ./*/*/*.pyc
	rm -rf ./*/*/*/*.pyc
