jekyll-to-hugo/Makefile
2023-06-03 16:24:06 +03:00

14 lines
No EOL
238 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
release:
hatch build && hatch publish