Timsty's picture
Add files using upload-large-folder tool
c26f879 verified
Raw
History Blame Contribute Delete
196 Bytes
.PHONY : run-checks
run-checks :
isort --check .
black --check .
ruff check .
# mypy .
.PHONY : format
format :
isort .
black .
.PHONY : build
build :
rm -rf *.egg-info/
python -m build