openmedialibrary_platform/Shared/lib/python2.7/site-packages/setuptools/command/register.py

10 lines
269 B
Python
Raw Normal View History

2013-10-11 17:28:32 +00:00
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)