synapz's picture
Upload folder using huggingface_hub
7cd774e verified
PHONY: black isort flake8
virtual:
install:
pip install -e . && env/bin/python post_install.py
black: # Formats code with black
black --config pyproject.toml ./
isort: isort # Sorts imports using isort
isort *.py
flake8: flake8 # Lints code using flake8
flake8 *.py