mirror of
https://github.com/KevinMidboe/delugeClient.git
synced 2025-10-29 12:00:13 +00:00
23 lines
264 B
Makefile
23 lines
264 B
Makefile
.PHONY: clean
|
|
binaries=dist build
|
|
|
|
install:
|
|
python3 setup.py install
|
|
|
|
build:
|
|
python3 setup.py build
|
|
|
|
tarball:
|
|
python3 setup.py sdist
|
|
|
|
wheel:
|
|
python3 setup.py bdist_wheel
|
|
|
|
dist: tarball wheel
|
|
|
|
upload: clean dist
|
|
twine upload dist/*
|
|
|
|
clean:
|
|
rm -rf $(binaries)
|