We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64fa23 commit ec398c3Copy full SHA for ec398c3
Makefile
@@ -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
@@ -0,0 +1 @@
+pygame==2.0.0.dev6
0 commit comments