#!/usr/bin/python2
# EASY-INSTALL-ENTRY-SCRIPT: 'nototools==0.0.1','console_scripts','notodiff'
__requires__ = 'nototools==0.0.1'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('nototools==0.0.1', 'console_scripts', 'notodiff')()
    )
