blob: c1cd3ca660d31a4858eead41e7300c36ac8a5e54 [file] [log] [blame]
#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'hello==0.1','console_scripts','hello'
__requires__ = 'hello==0.1'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('hello==0.1', 'console_scripts', 'hello')()
)