-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMakefile
14 lines (10 loc) · 868 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#~/P/W/aio ❯❯❯ twine upload dist/* ⏎
#~/P/W/aio ❯❯❯ python3 setup.py sdist bdist_wheel ⏎
#~/P/W/aio ❯❯❯ rm -rf pywhistle.egg-info build dist
all: pywhistle.egg-info
pywhistle.egg-info:
python3 setup.py sdist bdist_wheel
clean:
rm -rf pywhistle.egg-info build dist
push:
twine upload dist/*