diff --git a/Makefile b/Makefile index b0e6834..f5e1a71 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ PYTHONPATH := ./torch:$(PYTHONPATH) -.PHONY: test lint setup dist +.PHONY: test lint build dist test: PYTHONPATH=$(PYTHONPATH) pytest src/ lint: pylint --disable=E1101,W0719,C0202,R0801,W0613,C0411 src/ -setup: - python3 -m pip install -r requirements.txt -U +build: + ./build.sh dist/archive.tar.gz: - tar -czf module.tar.gz run.sh requirements.txt src \ No newline at end of file + tar -czvf dist/archive.tar.gz dist/__main__ \ No newline at end of file