-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
42 lines (32 loc) · 813 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.PHONY: help boot build install install-test reinstall uninstall upload upload-test which
help:
@echo boot
@echo build
@echo install
@echo install-test
@echo reinstall
@echo uninstall
@echo upload
@echo upload-test
@echo which
boot:
@python3 -m pip install --upgrade build
@python3 -m pip install --upgrade twine
build:
@rm -rf dist
@python3 -m build
install:
@python3 -m pip install stftpitchshift
install-test:
@python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps stftpitchshift
reinstall:
@python3 -m pip uninstall -y stftpitchshift
@python3 -m pip install stftpitchshift
uninstall:
@python3 -m pip uninstall -y stftpitchshift
upload:
@python3 -m twine upload dist/*
upload-test:
@python3 -m twine upload --repository testpypi dist/*
which:
@which python3