-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (31 loc) · 740 Bytes
/
Copy pathMakefile
File metadata and controls
41 lines (31 loc) · 740 Bytes
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
.PHONY: help boot build install install-test uninstall upload upload-test which
help:
@echo boot
@echo build
@echo install
@echo install-edit
@echo install-test
@echo uninstall
@echo upload
@echo upload-test
@echo which
boot:
@python -m pip install --upgrade build
@python -m pip install --upgrade twine
build:
@rm -rf dist
@python -m build
install:
@python -m pip install --upgrade remucs
install-edit:
@python -m pip install --editable .
install-test:
@python -m pip install --index-url https://test.pypi.org/simple --upgrade remucs
uninstall:
@python -m pip uninstall --yes remucs
upload:
@python -m twine upload dist/*
upload-test:
@python -m twine upload --repository testpypi dist/*
which:
@which python