#!/home/fsufitch/helloworld_egg/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'sample-helloworld-egg==0.1','console_scripts','helloserver'
__requires__ = 'sample-helloworld-egg==0.1'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('sample-helloworld-egg==0.1', 'console_scripts', 'helloserver')()
    )
