Basic Makefile and requirements.txt
This commit is contained in:
parent
b72b8f7408
commit
092f822829
2 changed files with 16 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal 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
5
requirements.txt
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue