PYTHON := $(shell which python)
PIPENV := $(PYTHON) -m pipenv

run:
	$(PIPENV) run ./main.py

shell:
	$(PIPENV) shell

install:
	$(PIPENV) install
