~javiljoen/monitor

ad52b0fae195f4caaca8b09297925eaad8a69553 — Jack Viljoen 6 years ago 605e2de
cleanup
2 files changed, 23 insertions(+), 0 deletions(-)

A Makefile
M monitor/monitor.py -rwxr-xr-x => -rw-r--r--
A Makefile => Makefile +23 -0
@@ 0,0 1,23 @@
.PHONY: help clean clean-pyc clean-build build

help:
	@echo "clean - remove Python file & build artifacts"
	@echo "build - package"

clean: clean-build clean-pyc

clean-build:
	rm -fr build/
	rm -fr dist/
	rm -fr *.egg-info

clean-pyc:
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +
	find . -name '*~' -exec rm -f {} +
	find . -name __pycache__ -type d -exec rmdir {} +
	rm -fr .cache/

build: clean
	python setup.py bdist_wheel
	ls -l dist

M monitor/monitor.py => monitor/monitor.py +0 -0