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

if __name__ == '__main__':
    sys.exit(
        load_entry_point('notehandler==0.4', 'console_scripts', 'nh')()
    )
