#
# Makefile!
#

build:
	flit build

publish: build
	flit publish

devel: publish
	flit install -s

install: publish
	pip3 

