.PHONY: install dev clean

install:
	pip install .

dev:
	pip install -e .[color]

clean:
	rm -rf build dist *.egg-info __pycache__
