Metadata-Version: 1.1
Name: dulwich-tree
Version: 0.1.0
Summary: Library to help make and commit modifications to a tree with Dulwich.
Home-page: https://github.com/garyvdm/dulwich-tree
Author: Gary van der Merwe
Author-email: garyvdm@gmail.com
License: Apache-2
Description: This library provides objects to make and commit modifications to tree using dulwich. It try's to provide and interface
        similar to making changes to a os filesystem.
        
        ### Example:
        
                writer = TreeWriter(repo)
        
                writer.set_data('a/b', 'file b'.encode())
                writer.do_commit(message='Add a/b.'.encode())
        
                writer.set_data('a/b', b'file b ver 2',)
                writer.do_commit(message='Modify a/b.'.encode())
        
                writer.remove('a/b')
                writer.do_commit(message='Remove a.'.encode())
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Version Control
