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 cef16df commit b1ca52eCopy full SHA for b1ca52e
Makefile
@@ -3,7 +3,7 @@ help:
3
@echo "sdist - Source distribution"
4
@echo "html - HTML documentation"
5
@echo "docclean - Remove documentation build files"
6
- @echo "register - register a new release on PyPI"
+ @echo "upload - upload a new release to PyPI"
7
@echo "website - build web version of docs"
8
@echo "installwebsite - deploy web version of docs"
9
@echo "develop - install development version"
@@ -46,8 +46,14 @@ installwebsite: website
46
# Register the new version on pypi
47
.PHONY: register
48
register:
49
+ echo "USE upload target"
50
+ exit 1
51
python setup.py register
52
53
+.PHONY: upload
54
+upload:
55
+ python setup.py sdist upload
56
+
57
# Testing
58
test:
59
tox
0 commit comments