This commit is contained in:
Frida H 2019-08-17 22:24:07 +00:00 committed by GitHub
commit 3aa8d69736
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
env:
test -e .env || virtualenv .env -p python3
. ./.env/bin/activate \
&& pip install -r requirements.txt
game: env
test -e .env || virtualenv .env -p python3
. ./.env/bin/activate \
&& pip install -r requirements.txt \
&& python -u game.py
clean:
rm -rf .env