Metadata-Version: 1.0
Name: automain
Version: 1.2
Summary: A more aesthetically pleasing replacement of "if __name__ == 'main':"
Home-page: UNKNOWN
Author: Gerald Kaszuba
Author-email: automain@gakman.com
License: UNKNOWN
Description: 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'
        
        
Platform: UNKNOWN
