Metadata-Version: 1.0
Name: githubhook
Version: 0.0.2
Summary: git post-commit hook for github. git remote add github, create github repo/update github repo settings
Home-page: http://github.com/cancerhermit/githubhook/
Author: cancerhermit
Author-email: cancerhermit@gmail.com
License: GPL
Description: Installing
        ----------
        
        ::
        
            pip install github GitPython # requires
            pip install githubhook
        
        Config
        ------
        
        ::
        
            git config --global user.name "github-name"
            git config --global github.password "github-password"
        
        Usage
        -----
        
        ::
        
            from os.path import exists
            from githubhook import create, edit
            try:
                create() # git remote add github url if not exists and create remote repo
                if exists("description"):
                    edit(description=open("description").read())
            except Exception, e: # no internet, etc
                print str(e)
        
        P.S.: my
        `post-commit <https://gist.github.com/4050474#file_post_commit>`_ hook
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
