You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
270 B

  1. import distutils.command.register as orig
  2. class register(orig.register):
  3. __doc__ = orig.register.__doc__
  4. def run(self):
  5. # Make sure that we are using valid current name/version info
  6. self.run_command('egg_info')
  7. orig.register.run(self)