Metadata-Version: 1.0
Name: githubhook
Version: 0.0.1
Summary: git post-commit hook for github. git remote add github url if not exists, create remote repository if not exists and update github repository settings
Home-page: http://github.com/cancerhermit/githubhook/
Author: cancerhermit
Author-email: cancerhermit@gmail.com
License: GPL
Description: Installing
        ----------
        
        ::
        
            sudo pip install github GitPython # requires
            sudo pip install githubhook
        
        Config
        ------
        
        ::
        
            git config --global user.name "github-name"
            git config --global github.password "github-password"
        
        Usage
        -----
        
        **post-commit** example:
        
        ::
        
            python <<EOF
            import githubhook
            try:
                githubhook.create() # git remote add github url if not exists and create remote repo
                githubhook.edit(description=open("description").read())
            except Exception, e:
                print str(e)
            EOF
        
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
