We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 894960c commit 6482c6eCopy full SHA for 6482c6e
changes/packaging.py
@@ -42,8 +42,10 @@ def install_package(context):
42
43
def upload_package(context):
44
"""Uploads your project packages to pypi with twine."""
45
+
46
if not context.dry_run and build_package(context):
- upload_args = 'twine upload dist/*'
47
+ upload_args = 'twine upload '
48
+ upload_args += ' '.join(path('dist').files())
49
if context.pypi:
50
upload_args += ' -r %s' % context.pypi
51
0 commit comments