From 96173ea359303d68315d2c7358ac760bd974d7ee Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Sat, 29 Apr 2023 08:28:32 -0300 Subject: [PATCH] added makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0ff05cf --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +.PHONY: all install tests + +all: help + + +tests: + pytest tests + +install: + pip install -r requirements.txt + + +help: + @echo '----' + @echo 'tests - run tests' + @echo 'install - install dependencies'