#!/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
# EASY-INSTALL-ENTRY-SCRIPT: 'oZip==1.1.1','console_scripts','ozip'
__requires__ = 'oZip==1.1.1'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('oZip==1.1.1', 'console_scripts', 'ozip')()
    )
