#
# Makefile
#
PYTHON=python3

all: sdist bdist

install:
	$(PYTHON) -m pip install .

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