diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-03-21 20:56:35 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-03-21 20:56:35 +0000 |
commit | 55f1bb8bfa362569b6698a91a1cf421bdfcd13d7 (patch) | |
tree | beea9fb70aee8ff05b1f6fa78bd04e5d2a668bdf /Lib/distutils/command/upload.py | |
parent | e6c430dffe5618016c516578726c0a7aa1471a9e (diff) | |
download | cpython-git-55f1bb8bfa362569b6698a91a1cf421bdfcd13d7.tar.gz |
Add the upload command. Make all dist commands register their
outputs with the distribution object.
Diffstat (limited to 'Lib/distutils/command/upload.py')
-rw-r--r-- | Lib/distutils/command/upload.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py new file mode 100644 index 0000000000..d14f177697 --- /dev/null +++ b/Lib/distutils/command/upload.py @@ -0,0 +1,4 @@ +"""distutils.command.upload + +Implements the Distutils 'upload' subcommand (upload package to PyPI).""" + |