.PHONY: check test
test: check
check: setup
	py.test pytest
setup:
	pip install -e .
