#!/opt/calamari/venv/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'calamari-cthulhu==0.1','console_scripts','cthulhu-manager'
__requires__ = 'calamari-cthulhu==0.1'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('calamari-cthulhu==0.1', 'console_scripts', 'cthulhu-manager')()
    )
