1
0
Fork 0
mirror of https://github.com/fastogt/pyfastogt synced 2025-02-12 15:41:53 +00:00

Update setup.py

This commit is contained in:
Alexandr Topilski 2020-03-04 12:46:20 +03:00 committed by GitHub
parent f4e987d232
commit 4e1f4e6b5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"]
)