9 lines
101 B
Makefile
9 lines
101 B
Makefile
clean:
|
|
rm -rf dist/
|
|
|
|
build: clean
|
|
python -m build --sdist --wheel
|
|
|
|
pub: build
|
|
twine upload dist/*
|