.PHONY: env clean

env:
	python3 -m venv env
	./env/bin/pip install requests python-dotenv

clean:
	rm -rf env
