From 4e1f4e6b5fe25e97b6ee0e83aba626a692c0e01b Mon Sep 17 00:00:00 2001 From: Alexandr Topilski Date: Wed, 4 Mar 2020 12:46:20 +0300 Subject: [PATCH] Update setup.py --- setup.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 4776d02..0db3ee1 100644 --- a/setup.py +++ b/setup.py @@ -49,13 +49,6 @@ else: about['__version__'] = VERSION -class InstallCommand(install): - """Customized setuptools install command - prints a friendly greeting.""" - - def run(self): - install.run(self) - - class UploadCommand(Command): """Support setup.py upload.""" @@ -125,8 +118,7 @@ setup( ], # $ setup.py publish support. cmdclass={ - 'upload': UploadCommand, - 'install': InstallCommand + 'upload': UploadCommand }, scripts=["pyfastogt/exe/request_fastogt_license_key"] )