Development of an internal social media platform with personalised dashboards for students
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.

register.py 270B

12345678910
  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)