.PHONY: wheel clean install test

wheel:
	python3 -m build --wheel --outdir dist/

clean:
	rm -rf dist/ build/ *.egg-info aigp_client/__pycache__

install:
	pip install dist/aigp_client-1.0.0-py3-none-any.whl

test:
	pytest tests/ -v
