#!/usr/bin/env python

import signal
signal.signal(signal.SIGINT, signal.SIG_DFL)  # Allow ^C to kill the process.
signal.signal(signal.SIGPIPE, signal.SIG_DFL) # Allow the output pipe to be closed

try:
    from chemfp.commandline.oe2fps import main
    main()
except KeyboardInterrupt:
    raise SystemExit()
