Metadata-Version: 1.1
Name: anyvcs
Version: 1.2.1
Summary: An abstraction layer for multiple version control systems.
Home-page: https://github.com/ScottDuckworth/python-anyvcs
Author: Scott Duckworth
Author-email: sduckwo@clemson.edu
License: GNU Lesser General Public License v3 (LGPLv3)
Description: python-anyvcs
        =============
        
        A Python abstraction layer for multiple version control systems.
        
        [![Build Status](https://travis-ci.org/ScottDuckworth/python-anyvcs.png)](https://travis-ci.org/ScottDuckworth/python-anyvcs)
        
        Example usage:
        
            >>> from pprint import pprint
            >>> import anyvcs
            >>> repo = anyvcs.open('/path/to/repo')
            >>> repo.branches()
            ['1.0_develop', '1.0_master', 'develop', 'master']
            >>>
            >>> log = repo.log(limit=3)
            >>> pprint([commit.message for commit in log])
            ["Merge branch 'release/1.2.0' into develop\n",
             "Merge branch 'release/1.2.0'\n",
             'add README symlink to keep python happy\n',
             'add copyright information\n']
            >>>
            >>> ls = repo.ls('master', '/')
            >>> pprint(ls)
            [{'name': '.gitignore', 'path': '.gitignore', 'type': 'f'},
             {'name': 'AUTHORS', 'path': 'AUTHORS', 'type': 'f'},
             {'name': 'COPYING', 'path': 'COPYING', 'type': 'f'},
             {'name': 'COPYING.LESSER', 'path': 'COPYING.LESSER', 'type': 'f'},
             {'name': 'LICENSE', 'path': 'LICENSE', 'type': 'f'},
             {'name': 'MANIFEST.in', 'path': 'MANIFEST.in', 'type': 'f'},
             {'name': 'README', 'path': 'README', 'type': 'l'},
             {'name': 'README.md', 'path': 'README.md', 'type': 'f'},
             {'name': 'RELEASE-NOTES.txt', 'path': 'RELEASE-NOTES.txt', 'type': 'f'},
             {'name': 'anyvcs', 'path': 'anyvcs', 'type': 'd'},
             {'name': 'setup.py', 'path': 'setup.py', 'type': 'f'},
             {'name': 'tests.py', 'path': 'tests.py', 'type': 'f'}]
        
        Compatibility
        -------------
        
        python-anyvcs should work with the following software versions:
        
          * Python: 2.6, 2.7
          * Git: 1.7.0 or later
          * Mercurial: 1.6.1 or later
          * Subversion: 1.5 or later
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Version Control
