We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 842d260 commit c14aa35Copy full SHA for c14aa35
1 file changed
Makefile
@@ -29,13 +29,21 @@ clean:
29
build:
30
python setup.py sdist bdist_wheel
31
32
+sign-build: build
33
+ (\
34
+ cd dist; \
35
+ rm -f *.asc; \
36
+ for a in *.whl *.gz; do \
37
+ gpg --armor --detach-sign "$$a"; \
38
+ done)
39
+
40
upload:
41
twine upload dist/*
42
43
tag:
- git tag $$(python setup.py --version)
44
+ git tag -s $$(python setup.py --version)
45
-release: clean build upload tag
46
+release: clean build sign-build upload tag
47
48
.PHONY: format \
49
dev install \
0 commit comments