#!/Users/brent/anaconda/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'phrase==0.0.9','console_scripts','create_phrase_dictionary'
__requires__ = 'phrase==0.0.9'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('phrase==0.0.9', 'console_scripts', 'create_phrase_dictionary')()
    )
