summaryrefslogtreecommitdiff
path: root/setuptools/command/register.py
blob: 6694d1c0a774ace5bbf9a3b8a3cc60e4c98decb7 (plain)
1
2
3
4
5
6
7
8
9
import distutils.command.register as orig

class register(orig.register):
    __doc__ = orig.register.__doc__

    def run(self):
        # Make sure that we are using valid current name/version info
        self.run_command('egg_info')
        orig.register.run(self)