.PHONY: env clean

env:
	python3 -m venv env

clean:
	rm -rf env

