18 lines
273 B
Makefile
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
|