infra-controller/Makefile
Jeremie Fraeys 4cd7e72e2b
Some checks failed
Deploy / deploy (push) Failing after 7s
initial infra commit
2026-01-19 16:27:09 -05:00

18 lines
273 B
Makefile

.PHONY: install dev test clean build
install:
pip install -e .
dev:
pip install -e ".[dev]"
test:
pytest tests/
clean:
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type f -name "*.pyc" -delete
rm -rf build/ dist/ *.egg-info
build:
python -m build