diff --git a/4/4.10/4.10.1/main.py b/4/4.10/4.10.1/main.py new file mode 100644 index 0000000..e69de29 diff --git a/Adventure Game/Makefile b/Adventure Game/Makefile new file mode 100644 index 0000000..a15a119 --- /dev/null +++ b/Adventure Game/Makefile @@ -0,0 +1,7 @@ +init: + pip install -r requirements.txt + +test: + py.test tests + +.PHONY: init test \ No newline at end of file diff --git a/Adventure Game/requirements.txt b/Adventure Game/requirements.txt index f4357d5..6493b8a 100644 --- a/Adventure Game/requirements.txt +++ b/Adventure Game/requirements.txt @@ -1,2 +1,2 @@ -npyscreen==4.10.5 -windows-curses==2.2.0 # Only for those using windows, curses is standard on python for BSD and GNU/Linux +# Blessed handles our terminal "graphics" +blessed==1.17.12 \ No newline at end of file