#! /usr/bin/env python

try:
    from muxpy import main
except:
    import sys
    sys.path.append('.')
    from muxpy import main

main.run()
