Python-Spamprotection-API/Makefile

14 lines
222 B
Makefile
Raw Permalink Normal View History

2021-01-02 10:09:20 +01:00
install:
@python3 setup.py install --user
2021-01-02 10:09:20 +01:00
release:
@python3 setup.py sdist
@python3 setup.py sdist bdist_wheel
2021-01-02 10:09:20 +01:00
upload:
@twine upload dist/*
clean:
@rm -rf dist/ && rm -rf *.egg-info
@echo cleaned all local builds