jekyll-to-hugo/Makefile

14 lines
253 B
Makefile
Raw Normal View History

2023-05-29 18:35:38 +00:00
# Formats the code
format:
2023-05-31 15:32:42 +00:00
autoflake --exclude venv -ri . && black . && isort -r .
2023-05-29 18:35:38 +00:00
# Run tests
test:
2023-06-03 13:08:28 +00:00
pytest .
# Build package
build:
python -m build
# Upload package to PyPI
upload:
2023-06-03 13:24:06 +00:00
hatch publish
release:
hatch clean && hatch build && hatch publish