Remove helper scripts

* These scripts will be broken after PEP517 transition.

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate 2023-11-14 19:59:23 +02:00
parent c873e1520d
commit c51d3fc70c
No known key found for this signature in database
GPG Key ID: A12750536B5E7010
2 changed files with 0 additions and 43 deletions

View File

@ -1,34 +0,0 @@
# TODO: rename binary to euscan-ng
BIN = euscan
.PHONY:
all
clean
install-user
install-user-test
install
uninstall distclean
all:
@echo "Did nothing."
@echo "To do user installation use target: install-user"
install-user:
python setup.py -v install --user
install-user-test:
pip install --user .'[test]'
install: install-user
clean:
sh clean.sh
uninstall:
pip uninstall -v -y $(BIN)
distclean: clean uninstall

View File

@ -1,9 +0,0 @@
#!/bin/sh
rm -drv build
rm -drv dist
find . -name "*.egg*" -exec rm -drv {} \;
find . -name "*__pycache__*" -exec rm -drv {} \;
exit 0