#!/usr/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'rhsc-shell==2.1.2.3','console_scripts','rhsc-shell'
__requires__ = 'rhsc-shell==2.1.2.3'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('rhsc-shell==2.1.2.3', 'console_scripts', 'rhsc-shell')()
    )
