#!python
# EASY-INSTALL-ENTRY-SCRIPT: 'retools==0.4','console_scripts','retools-worker'
__requires__ = 'retools==0.4'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('retools==0.4', 'console_scripts', 'retools-worker')()
    )
