Metadata-Version: 1.1
Name: watdarepo
Version: 0.3.0
Summary: Determines type and host of a repo.
Home-page: https://github.com/pydanny/watdarepo
Author: Daniel Greenfeld
Author-email: pydanny@gmail.com
License: BSD
Description: ===============================
        watdarepo
        ===============================
        
        .. image:: https://badge.fury.io/py/watdarepo.png
            :target: http://badge.fury.io/py/watdarepo
            
        .. image:: https://travis-ci.org/pydanny/watdarepo.png?branch=master
                :target: https://travis-ci.org/pydanny/watdarepo
        
        .. image:: https://pypip.in/d/watdarepo/badge.png
                :target: https://crate.io/packages/watdarepo?version=latest
        
        .. image:: https://coveralls.io/repos/audreyr/cookiecutter/badge.png?branch=master
                :target: https://coveralls.io/r/audreyr/cookiecutter?branch=master
        
        
        Determines type and host of a repo. 
        
        * Free software: BSD license
        * Documentation: http://watdarepo.rtfd.org.
        
        Features
        --------
        
        Works to some degree with the following VCS:
        
        * Git
        * Mercurial
        * SVN
        * BZR
        
        Works to some degree with the following hosting services:
        
        * GitHub
        * BitBucket
        * GitLab
        * Gitorious
        * Sourceforge
        
        Usage
        -----
        
        ::
        
            >>> from watdarepo import watdarepo
            >>> watdarepo("https://github.com/pydanny/watdarepo")
            {
                u'vcs': u'git',
                u'hosting_service': u'github',
                u'repo_url': u'https://github.com/pydanny/watdarepo'
            }
        
        Related Projects
        -----------------
        
        * **Dulwich** is a Python Git API and does not have any discovery features.
        * **VCS** works with both Git and Mercurial, incorporates Dulwich, but does not appear to have any discovery features.
        
        
        
        
        History
        -------
        
        0.3.0 (2013-09-17)
        ++++++++++++++++++
        
        * Allows for overrides of default repo_aliases and hosting services.
        
        
        0.2.0 (2013-09-08)
        ++++++++++++++++++
        
        * Improved test coverage to 100%.
        * Added coveralls.
        * Better analysis of repos.
        
        0.1.0 (2013-09-08)
        ++++++++++++++++++
        
        * First release on PyPI.
Keywords: watdarepo,git,hg,mercurial,svn,bzr
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: Utilities
