Basic Makefile and requirements.txt

This commit is contained in:
Eryn Wells 2022-04-26 18:58:03 -07:00
parent b72b8f7408
commit 092f822829
2 changed files with 16 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
.PHONY: env
venv: env
python3 -m venv env
deps: env/bin/pip
./env/bin/pip install -r requirements.txt
freeze:
./env/bin/pip freeze > requirements.txt

5
requirements.txt Normal file
View file

@ -0,0 +1,5 @@
cffi==1.15.0
numpy==1.22.3
pycparser==2.21
tcod==13.6.1
typing_extensions==4.2.0