@@ -88,18 +88,22 @@ called a `wheelhouse`. The typical call for `wheel-uploader` would then
88
88
be something like::
89
89
90
90
CDN_URL=https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com
91
- wheel-uploader -r warehouse -u $CDN_URL -v -w ~/wheelhouse -t macosx matplotlib 2.0.0
92
- wheel-uploader -r warehouse -u $CDN_URL -v -w ~/wheelhouse -t manylinux1 matplotlib 2.0.0
91
+ wheel-uploader -r warehouse -u $CDN_URL -s - v -w ~/wheelhouse -t macosx matplotlib 2.0.0
92
+ wheel-uploader -r warehouse -u $CDN_URL -s - v -w ~/wheelhouse -t manylinux1 matplotlib 2.0.0
93
93
94
94
where:
95
95
96
- * ``-v `` means give verbose messages;
97
- * ``-w ~/wheelhouse `` means download the wheels from https://wheels.scipy.org
98
- to the directory ``~/wheelhouse ``;
99
96
* ``-r warehouse `` uses the upcoming Warehouse PyPI server (it is more
100
97
reliable than the current PyPI service for uploads);
101
- * ``matplotlib `` is the root name of the wheel(s) to download / upload;
102
- * ``2.0.0 `` is the version to download / upload.
98
+ * ``-u `` gives the URL from which to fetch the wheels, here the https address,
99
+ for some extra security;
100
+ * ``-s `` causes twine to sign the wheels with your GPG key;
101
+ * ``-v `` means give verbose messages;
102
+ * ``-w ~/wheelhouse `` means download the wheels from to the local directory
103
+ ``~/wheelhouse ``.
104
+
105
+ ``matplotlib `` is the root name of the wheel(s) to download / upload, and
106
+ ``2.0.0 `` is the version to download / upload.
103
107
104
108
In order to use the Warehouse PyPI server, you will need something like this
105
109
in your ``~/.pypirc `` file::
0 commit comments