File size: 243 Bytes
0b8e48f
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
.PHONY: clean build publish

build: clean
	python3 -m pip install --upgrade --quiet setuptools wheel twine
	python3 setup.py --quiet sdist bdist_wheel

publish: build
	python3 -m twine upload dist/*

clean:
	rm -r build dist *.egg-info || true