15 lines
325 B
Makefile
15 lines
325 B
Makefile
build: clean
|
|
python -m build --sdist --wheel -n
|
|
|
|
clean:
|
|
rm -rf build/ dist/ *.egg-info/ .eggs/ .pytest_cache/ .mypy_cache/ .coverage */__pycache__/ __pycache__/
|
|
|
|
publish: build
|
|
twine upload dist/*
|
|
|
|
lint:
|
|
black .
|
|
isort .
|
|
flake8 --max-line-length=88 --extend-ignore=E203,W503 pyroulette/
|
|
|
|
.PHONY: build publish clean lint |