automain
========

A neater shortcut to using the syntax:

    if __name__ == '__main__':
        mymain()

Instead, you can do:

    from automain import *  # will only import the automain decorator

    @automain
    def mymain():
        print 'this is our main function'

