We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db098e2 commit f5bf0cbCopy full SHA for f5bf0cb
Makefile
@@ -1,5 +1,12 @@
1
all:
2
- @echo "make release - Upload to pypi"
+ @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"
10
11
NAME:=$(shell python3 setup.py --name)
12
VERSION:=$(shell python3 setup.py --version | sed 's/+/-/g')
@@ -27,3 +34,5 @@ develop: purge bump
27
34
env/bin/pip install certifi
28
35
env/bin/pip install -Ue '.'
29
36
env/bin/pip install -Ue '.[develop]'
37
+
38
+release: test upload
0 commit comments