Skip to content

Commit ec398c3

Browse files
committed
Add Makefile, requirements.txt
1 parent c64fa23 commit ec398c3

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
PROJECT_NAME ?= python_epidemic_simulation
2+
3+
.PHONY: test build simulate
4+
5+
test:
6+
echo "no tests yet"
7+
8+
build:
9+
pip install -r requirements.txt
10+
11+
simulate:
12+
source env/bin/activate && python universe.py

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pygame==2.0.0.dev6

0 commit comments

Comments
 (0)