#!/usr/bin/env python
import sys


if __name__ == '__main__':
    try:
        from wefram import manage
    except ImportError as exc:
        raise ImportError(
            "Couldn't import Wefram, are you sure you have activated the virtual environment"
            " where it is installed in?"
        ) from exc
    manage.exec_with_args(sys.argv)
