mirror of
https://github.com/markqvist/rnodeconfigutil
synced 2026-08-12 17:39:56 -04:00
15 lines
201 B
Makefile
15 lines
201 B
Makefile
all: release
|
|
|
|
clean:
|
|
@echo Cleaning...
|
|
-rm -r ./build
|
|
-rm -r ./dist
|
|
|
|
build_wheel:
|
|
python3 setup.py sdist bdist_wheel
|
|
|
|
release: build_wheel
|
|
|
|
upload:
|
|
@echo Uploading to PyPi...
|
|
twine upload dist/*
|