jekyll-to-hugo/Makefile
Denis-Cosmin NUTIU eb58fb67d9 add pyproject.toml
2023-06-03 16:08:28 +03:00

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