fromdistutilsimportlogimportdistutils.command.registerasorigfromsetuptools.errorsimportRemovedCommandErrorclassregister(orig.register):"""Formerly used to register packages on PyPI."""defrun(self):msg=("The register command has been removed, use twine to upload "+"instead (https://pypi.org/p/twine)")self.announce("ERROR: "+msg,log.ERROR)raiseRemovedCommandError(msg)