Skip to content

Commit f5bf0cb

Browse files
committed
[fix] add help to makefile
1 parent db098e2 commit f5bf0cb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Makefile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
all:
2-
@echo "make release - Upload to pypi"
2+
@echo "make clean - clean dists"
3+
@echo "make bump - clean bump version"
4+
@echo "make sdist - create dists"
5+
@echo "make upload - upload packages"
6+
@echo "make tests - run tests"
7+
@echo "make purge - cleanup working copy"
8+
@echo "make develop - create a virtualenv"
9+
@echo "make release - test and release"
310

411
NAME:=$(shell python3 setup.py --name)
512
VERSION:=$(shell python3 setup.py --version | sed 's/+/-/g')
@@ -27,3 +34,5 @@ develop: purge bump
2734
env/bin/pip install certifi
2835
env/bin/pip install -Ue '.'
2936
env/bin/pip install -Ue '.[develop]'
37+
38+
release: test upload

0 commit comments

Comments
 (0)