Makefile 326 B

123456789101112131415161718
  1. install:
  2. pip install --upgrade pip &&\
  3. pip install -r requirements.txt
  4. #conda env create -f environment.yml
  5. #conda activate hf
  6. ##had to do this as well
  7. #conda install pytorch torchvision -c pytorch
  8. test:
  9. #python -m pytest -vv test_main.py
  10. format:
  11. black *.py
  12. lint:
  13. pylint --disable=R,C *.py
  14. all: install lint test