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

if __name__ == '__main__':
    sys.exit(
        load_entry_point('hotspot==0.0.2', 'console_scripts', 'hotspot')()
    )
