File size: 275 Bytes
7cd774e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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
|