12 lines
No EOL
199 B
Makefile
12 lines
No EOL
199 B
Makefile
# Formats the code
|
|
format:
|
|
autoflake --exclude venv -ri . && black . && isort -r .
|
|
# Run tests
|
|
test:
|
|
pytest .
|
|
# Build package
|
|
build:
|
|
python -m build
|
|
# Upload package to PyPI
|
|
upload:
|
|
hatch publish
|