train / makefile
ar08's picture
Upload 10 files
0b8e48f verified
raw
history blame contribute delete
243 Bytes
.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