12 lines
141 B
Makefile
12 lines
141 B
Makefile
all: build
|
|
|
|
build: clean
|
|
python setup.py sdist bdist_wheel
|
|
|
|
upload: clean build
|
|
twine upload dist/*
|
|
|
|
clean:
|
|
rm -rf build dist *.egg-info
|
|
|