From aea39ea122e74ac4eb27b1aebfb734556c7c5aac Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 20 Sep 2017 12:18:51 -0400 Subject: [PATCH] Update setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index aa5af5d..f54b271 100644 --- a/setup.py +++ b/setup.py @@ -41,8 +41,8 @@ with open(os.path.join(here, NAME, '__version__.py')) as f: exec(f.read(), about) -class PublishCommand(Command): - """Support setup.py publish.""" +class UploadCommand(Command): + """Support setup.py upload.""" description = 'Build and publish the package.' user_options = [] @@ -110,6 +110,6 @@ setup( ], # $ setup.py publish support. cmdclass={ - 'publish': PublishCommand, + 'upload': UploadCommand, }, )