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'