From 37524876e58452a85024b08e84bed6f0bdeafd2d Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Wed, 3 Feb 2021 17:27:22 -0500 Subject: [PATCH] Clean up adventure-game --- 4/4.10/4.10.1/main.py | 0 Adventure Game/Makefile | 7 +++++++ Adventure Game/requirements.txt | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 4/4.10/4.10.1/main.py create mode 100644 Adventure Game/Makefile 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