Import upstream version 0.19.7, md5 b342e41d768bc85c4d2d6ae80842e4a3 upstream/0.19.7
authorJelmer Vernooij <jelmer@jelmer.uk>
Mon, 5 Nov 2018 19:27:02 +0000 (19:27 +0000)
committerJelmer Vernooij <jelmer@jelmer.uk>
Mon, 5 Nov 2018 19:27:02 +0000 (19:27 +0000)
1  2 
PKG-INFO
dulwich.egg-info/PKG-INFO
dulwich.egg-info/SOURCES.txt
setup.cfg

diff --cc PKG-INFO
index 53932d42a1c2adf0a7a7e9eec32be401fccf17d7,0000000000000000000000000000000000000000..ce80ed2071882622af61999e183d0fd50c34974b
mode 100644,000000..100644
--- /dev/null
+++ b/PKG-INFO
@@@ -1,119 -1,0 +1,121 @@@
- Version: 0.19.6
- Summary: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=master)](https://travis-ci.org/dulwich/dulwich)
- [![Windows Build status](https://ci.appveyor.com/api/projects/status/mob7g4vnrfvvoweb?svg=true)](https://ci.appveyor.com/project/jelmer/dulwich/branch/master)
- This is the Dulwich project.
- It aims to provide an interface to git repos (both local and remote) that
- doesn't call out to git directly but instead uses pure Python.
- **Main website**: [www.dulwich.io](https://www.dulwich.io/)
- **License**: Apache License, version 2 or GNU General Public License, version 2 or later.
- The project is named after the part of London that Mr. and Mrs. Git live in
- in the particular Monty Python sketch.
- Installation
- ------------
- By default, Dulwich' setup.py will attempt to build and install the optional C
- extensions. The reason for this is that they significantly improve the performance
- since some low-level operations that are executed often are much slower in CPython.
- If you don't want to install the C bindings, specify the --pure argument to setup.py::
-     $ python setup.py --pure install
- or if you are installing from pip::
-     $ pip install dulwich --global-option="--pure"
- Note that you can also specify --global-option in a
- [requirements.txt](https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers)
- file, e.g. like this::
-     dulwich --global-option=--pure
- Getting started
- ---------------
- Dulwich comes with both a lower-level API and higher-level plumbing ("porcelain").
- For example, to use the lower level API to access the commit message of the
- last commit:
-     >>> from dulwich.repo import Repo
-     >>> r = Repo('.')
-     >>> r.head()
-     '57fbe010446356833a6ad1600059d80b1e731e15'
-     >>> c = r[r.head()]
-     >>> c
-     <Commit 015fc1267258458901a94d228e39f0a378370466>
-     >>> c.message
-     'Add note about encoding.\n'
- And to print it using porcelain:
-     >>> from dulwich import porcelain
-     >>> porcelain.log('.', max_entries=1)
-     --------------------------------------------------
-     commit: 57fbe010446356833a6ad1600059d80b1e731e15
-     Author: Jelmer Vernooij <jelmer@jelmer.uk>
-     Date:   Sat Apr 29 2017 23:57:34 +0000
-     Add note about encoding.
- Further documentation
- ---------------------
- The dulwich documentation can be found in docs/ and
- [on the web](https://www.dulwich.io/docs/).
- The API reference can be generated using pydoctor, by running "make pydoctor",
- or [on the web](https://www.dulwich.io/apidocs).
- Help
- ----
- There is a *#dulwich* IRC channel on the [Freenode](https://www.freenode.net/), and
- [dulwich-announce](https://groups.google.com/forum/#!forum/dulwich-announce)
- and [dulwich-discuss](https://groups.google.com/forum/#!forum/dulwich-discuss)
- mailing lists.
- Contributing
- ------------
- For a full list of contributors, see the git logs or [AUTHORS](AUTHORS).
- If you'd like to contribute to Dulwich, see the [CONTRIBUTING](CONTRIBUTING.md)
- file and [list of open issues](https://github.com/dulwich/dulwich/issues).
- Supported versions of Python
- ----------------------------
- At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
 +Metadata-Version: 2.1
 +Name: dulwich
- Description: UNKNOWN
++Version: 0.19.7
++Summary: Python Git Library
 +Home-page: https://www.dulwich.io/
 +Author: Jelmer Vernooij
 +Author-email: jelmer@jelmer.uk
 +License: Apachev2 or later or GPLv2
 +Project-URL: Bug Tracker, https://github.com/dulwich/dulwich/issues
- Classifier: Programming Language :: Python :: 3.3
++Project-URL: GitHub, https://github.com/dulwich/dulwich
++Project-URL: Repository, https://www.dulwich.io/code/
++Description: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=master)](https://travis-ci.org/dulwich/dulwich)
++        [![Windows Build status](https://ci.appveyor.com/api/projects/status/mob7g4vnrfvvoweb?svg=true)](https://ci.appveyor.com/project/jelmer/dulwich/branch/master)
++        
++        This is the Dulwich project.
++        
++        It aims to provide an interface to git repos (both local and remote) that
++        doesn't call out to git directly but instead uses pure Python.
++        
++        **Main website**: [www.dulwich.io](https://www.dulwich.io/)
++        
++        **License**: Apache License, version 2 or GNU General Public License, version 2 or later.
++        
++        The project is named after the part of London that Mr. and Mrs. Git live in
++        in the particular Monty Python sketch.
++        
++        Installation
++        ------------
++        
++        By default, Dulwich' setup.py will attempt to build and install the optional C
++        extensions. The reason for this is that they significantly improve the performance
++        since some low-level operations that are executed often are much slower in CPython.
++        
++        If you don't want to install the C bindings, specify the --pure argument to setup.py::
++        
++            $ python setup.py --pure install
++        
++        or if you are installing from pip::
++        
++            $ pip install dulwich --global-option="--pure"
++        
++        Note that you can also specify --global-option in a
++        [requirements.txt](https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers)
++        file, e.g. like this::
++        
++            dulwich --global-option=--pure
++        
++        Getting started
++        ---------------
++        
++        Dulwich comes with both a lower-level API and higher-level plumbing ("porcelain").
++        
++        For example, to use the lower level API to access the commit message of the
++        last commit:
++        
++            >>> from dulwich.repo import Repo
++            >>> r = Repo('.')
++            >>> r.head()
++            '57fbe010446356833a6ad1600059d80b1e731e15'
++            >>> c = r[r.head()]
++            >>> c
++            <Commit 015fc1267258458901a94d228e39f0a378370466>
++            >>> c.message
++            'Add note about encoding.\n'
++        
++        And to print it using porcelain:
++        
++            >>> from dulwich import porcelain
++            >>> porcelain.log('.', max_entries=1)
++            --------------------------------------------------
++            commit: 57fbe010446356833a6ad1600059d80b1e731e15
++            Author: Jelmer Vernooij <jelmer@jelmer.uk>
++            Date:   Sat Apr 29 2017 23:57:34 +0000
++        
++            Add note about encoding.
++        
++        Further documentation
++        ---------------------
++        
++        The dulwich documentation can be found in docs/ and
++        [on the web](https://www.dulwich.io/docs/).
++        
++        The API reference can be generated using pydoctor, by running "make pydoctor",
++        or [on the web](https://www.dulwich.io/apidocs).
++        
++        Help
++        ----
++        
++        There is a *#dulwich* IRC channel on the [Freenode](https://www.freenode.net/), and
++        [dulwich-announce](https://groups.google.com/forum/#!forum/dulwich-announce)
++        and [dulwich-discuss](https://groups.google.com/forum/#!forum/dulwich-discuss)
++        mailing lists.
++        
++        Contributing
++        ------------
++        
++        For a full list of contributors, see the git logs or [AUTHORS](AUTHORS).
++        
++        If you'd like to contribute to Dulwich, see the [CONTRIBUTING](CONTRIBUTING.md)
++        file and [list of open issues](https://github.com/dulwich/dulwich/issues).
++        
++        Supported versions of Python
++        ----------------------------
++        
++        At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
++        
++Keywords: git vcs
 +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: Operating System :: POSIX
 +Classifier: Operating System :: Microsoft :: Windows
 +Classifier: Topic :: Software Development :: Version Control
 +Provides-Extra: fastimport
 +Provides-Extra: https
index 53932d42a1c2adf0a7a7e9eec32be401fccf17d7,0000000000000000000000000000000000000000..ce80ed2071882622af61999e183d0fd50c34974b
mode 100644,000000..100644
--- /dev/null
@@@ -1,119 -1,0 +1,121 @@@
- Version: 0.19.6
- Summary: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=master)](https://travis-ci.org/dulwich/dulwich)
- [![Windows Build status](https://ci.appveyor.com/api/projects/status/mob7g4vnrfvvoweb?svg=true)](https://ci.appveyor.com/project/jelmer/dulwich/branch/master)
- This is the Dulwich project.
- It aims to provide an interface to git repos (both local and remote) that
- doesn't call out to git directly but instead uses pure Python.
- **Main website**: [www.dulwich.io](https://www.dulwich.io/)
- **License**: Apache License, version 2 or GNU General Public License, version 2 or later.
- The project is named after the part of London that Mr. and Mrs. Git live in
- in the particular Monty Python sketch.
- Installation
- ------------
- By default, Dulwich' setup.py will attempt to build and install the optional C
- extensions. The reason for this is that they significantly improve the performance
- since some low-level operations that are executed often are much slower in CPython.
- If you don't want to install the C bindings, specify the --pure argument to setup.py::
-     $ python setup.py --pure install
- or if you are installing from pip::
-     $ pip install dulwich --global-option="--pure"
- Note that you can also specify --global-option in a
- [requirements.txt](https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers)
- file, e.g. like this::
-     dulwich --global-option=--pure
- Getting started
- ---------------
- Dulwich comes with both a lower-level API and higher-level plumbing ("porcelain").
- For example, to use the lower level API to access the commit message of the
- last commit:
-     >>> from dulwich.repo import Repo
-     >>> r = Repo('.')
-     >>> r.head()
-     '57fbe010446356833a6ad1600059d80b1e731e15'
-     >>> c = r[r.head()]
-     >>> c
-     <Commit 015fc1267258458901a94d228e39f0a378370466>
-     >>> c.message
-     'Add note about encoding.\n'
- And to print it using porcelain:
-     >>> from dulwich import porcelain
-     >>> porcelain.log('.', max_entries=1)
-     --------------------------------------------------
-     commit: 57fbe010446356833a6ad1600059d80b1e731e15
-     Author: Jelmer Vernooij <jelmer@jelmer.uk>
-     Date:   Sat Apr 29 2017 23:57:34 +0000
-     Add note about encoding.
- Further documentation
- ---------------------
- The dulwich documentation can be found in docs/ and
- [on the web](https://www.dulwich.io/docs/).
- The API reference can be generated using pydoctor, by running "make pydoctor",
- or [on the web](https://www.dulwich.io/apidocs).
- Help
- ----
- There is a *#dulwich* IRC channel on the [Freenode](https://www.freenode.net/), and
- [dulwich-announce](https://groups.google.com/forum/#!forum/dulwich-announce)
- and [dulwich-discuss](https://groups.google.com/forum/#!forum/dulwich-discuss)
- mailing lists.
- Contributing
- ------------
- For a full list of contributors, see the git logs or [AUTHORS](AUTHORS).
- If you'd like to contribute to Dulwich, see the [CONTRIBUTING](CONTRIBUTING.md)
- file and [list of open issues](https://github.com/dulwich/dulwich/issues).
- Supported versions of Python
- ----------------------------
- At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
 +Metadata-Version: 2.1
 +Name: dulwich
- Description: UNKNOWN
++Version: 0.19.7
++Summary: Python Git Library
 +Home-page: https://www.dulwich.io/
 +Author: Jelmer Vernooij
 +Author-email: jelmer@jelmer.uk
 +License: Apachev2 or later or GPLv2
 +Project-URL: Bug Tracker, https://github.com/dulwich/dulwich/issues
- Classifier: Programming Language :: Python :: 3.3
++Project-URL: GitHub, https://github.com/dulwich/dulwich
++Project-URL: Repository, https://www.dulwich.io/code/
++Description: [![Build Status](https://travis-ci.org/dulwich/dulwich.png?branch=master)](https://travis-ci.org/dulwich/dulwich)
++        [![Windows Build status](https://ci.appveyor.com/api/projects/status/mob7g4vnrfvvoweb?svg=true)](https://ci.appveyor.com/project/jelmer/dulwich/branch/master)
++        
++        This is the Dulwich project.
++        
++        It aims to provide an interface to git repos (both local and remote) that
++        doesn't call out to git directly but instead uses pure Python.
++        
++        **Main website**: [www.dulwich.io](https://www.dulwich.io/)
++        
++        **License**: Apache License, version 2 or GNU General Public License, version 2 or later.
++        
++        The project is named after the part of London that Mr. and Mrs. Git live in
++        in the particular Monty Python sketch.
++        
++        Installation
++        ------------
++        
++        By default, Dulwich' setup.py will attempt to build and install the optional C
++        extensions. The reason for this is that they significantly improve the performance
++        since some low-level operations that are executed often are much slower in CPython.
++        
++        If you don't want to install the C bindings, specify the --pure argument to setup.py::
++        
++            $ python setup.py --pure install
++        
++        or if you are installing from pip::
++        
++            $ pip install dulwich --global-option="--pure"
++        
++        Note that you can also specify --global-option in a
++        [requirements.txt](https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers)
++        file, e.g. like this::
++        
++            dulwich --global-option=--pure
++        
++        Getting started
++        ---------------
++        
++        Dulwich comes with both a lower-level API and higher-level plumbing ("porcelain").
++        
++        For example, to use the lower level API to access the commit message of the
++        last commit:
++        
++            >>> from dulwich.repo import Repo
++            >>> r = Repo('.')
++            >>> r.head()
++            '57fbe010446356833a6ad1600059d80b1e731e15'
++            >>> c = r[r.head()]
++            >>> c
++            <Commit 015fc1267258458901a94d228e39f0a378370466>
++            >>> c.message
++            'Add note about encoding.\n'
++        
++        And to print it using porcelain:
++        
++            >>> from dulwich import porcelain
++            >>> porcelain.log('.', max_entries=1)
++            --------------------------------------------------
++            commit: 57fbe010446356833a6ad1600059d80b1e731e15
++            Author: Jelmer Vernooij <jelmer@jelmer.uk>
++            Date:   Sat Apr 29 2017 23:57:34 +0000
++        
++            Add note about encoding.
++        
++        Further documentation
++        ---------------------
++        
++        The dulwich documentation can be found in docs/ and
++        [on the web](https://www.dulwich.io/docs/).
++        
++        The API reference can be generated using pydoctor, by running "make pydoctor",
++        or [on the web](https://www.dulwich.io/apidocs).
++        
++        Help
++        ----
++        
++        There is a *#dulwich* IRC channel on the [Freenode](https://www.freenode.net/), and
++        [dulwich-announce](https://groups.google.com/forum/#!forum/dulwich-announce)
++        and [dulwich-discuss](https://groups.google.com/forum/#!forum/dulwich-discuss)
++        mailing lists.
++        
++        Contributing
++        ------------
++        
++        For a full list of contributors, see the git logs or [AUTHORS](AUTHORS).
++        
++        If you'd like to contribute to Dulwich, see the [CONTRIBUTING](CONTRIBUTING.md)
++        file and [list of open issues](https://github.com/dulwich/dulwich/issues).
++        
++        Supported versions of Python
++        ----------------------------
++        
++        At the moment, Dulwich supports (and is tested on) CPython 2.7, 3.3, 3.4, 3.5, 3.6 and Pypy.
++        
++Keywords: git vcs
 +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: Operating System :: POSIX
 +Classifier: Operating System :: Microsoft :: Windows
 +Classifier: Topic :: Software Development :: Version Control
 +Provides-Extra: fastimport
 +Provides-Extra: https
index 0e23b94c216ab316a66a39fd54e71f95887c7a06,0000000000000000000000000000000000000000..e813aa8abbe22e7b73cb72e01f7559ed862c9714
mode 100644,000000..100644
--- /dev/null
@@@ -1,206 -1,0 +1,215 @@@
- setup.cfg
++.coveragerc
++.gitignore
++.mailmap
 +.testr.conf
 +.travis.yml
 +AUTHORS
 +CONTRIBUTING.md
 +COPYING
 +MANIFEST.in
 +Makefile
 +NEWS
 +README.md
 +README.swift.md
 +TODO
 +appveyor.yml
++build.cmd
 +dulwich.cfg
++requirements.txt
 +setup.py
 +tox.ini
 +bin/dul-receive-pack
 +bin/dul-upload-pack
 +bin/dulwich
++devscripts/PREAMBLE.c
++devscripts/PREAMBLE.py
++devscripts/replace-preamble.sh
 +docs/Makefile
 +docs/conf.py
 +docs/index.txt
 +docs/make.bat
 +docs/performance.txt
 +docs/protocol.txt
++docs/tutorial/.gitignore
 +docs/tutorial/Makefile
 +docs/tutorial/conclusion.txt
 +docs/tutorial/encoding.txt
 +docs/tutorial/file-format.txt
 +docs/tutorial/index.txt
 +docs/tutorial/introduction.txt
 +docs/tutorial/object-store.txt
 +docs/tutorial/porcelain.txt
 +docs/tutorial/remote.txt
 +docs/tutorial/repo.txt
 +docs/tutorial/tag.txt
 +dulwich/__init__.py
 +dulwich/_diff_tree.c
 +dulwich/_objects.c
 +dulwich/_pack.c
 +dulwich/archive.py
 +dulwich/client.py
 +dulwich/config.py
 +dulwich/diff_tree.py
 +dulwich/errors.py
 +dulwich/fastexport.py
 +dulwich/file.py
 +dulwich/greenthreads.py
 +dulwich/hooks.py
 +dulwich/ignore.py
 +dulwich/index.py
 +dulwich/log_utils.py
 +dulwich/lru_cache.py
 +dulwich/mailmap.py
 +dulwich/object_store.py
 +dulwich/objects.py
 +dulwich/objectspec.py
 +dulwich/pack.py
 +dulwich/patch.py
 +dulwich/porcelain.py
 +dulwich/protocol.py
 +dulwich/reflog.py
 +dulwich/refs.py
 +dulwich/repo.py
 +dulwich/server.py
 +dulwich/stash.py
 +dulwich/stdint.h
 +dulwich/walk.py
 +dulwich/web.py
 +dulwich.egg-info/PKG-INFO
 +dulwich.egg-info/SOURCES.txt
 +dulwich.egg-info/dependency_links.txt
 +dulwich.egg-info/requires.txt
 +dulwich.egg-info/top_level.txt
++dulwich/contrib/README.md
 +dulwich/contrib/__init__.py
 +dulwich/contrib/paramiko_vendor.py
 +dulwich/contrib/release_robot.py
 +dulwich/contrib/swift.py
 +dulwich/contrib/test_release_robot.py
 +dulwich/contrib/test_swift.py
 +dulwich/contrib/test_swift_smoke.py
 +dulwich/tests/__init__.py
 +dulwich/tests/test_archive.py
 +dulwich/tests/test_blackbox.py
 +dulwich/tests/test_client.py
 +dulwich/tests/test_config.py
 +dulwich/tests/test_diff_tree.py
 +dulwich/tests/test_fastexport.py
 +dulwich/tests/test_file.py
 +dulwich/tests/test_grafts.py
 +dulwich/tests/test_greenthreads.py
 +dulwich/tests/test_hooks.py
 +dulwich/tests/test_ignore.py
 +dulwich/tests/test_index.py
 +dulwich/tests/test_lru_cache.py
 +dulwich/tests/test_mailmap.py
 +dulwich/tests/test_missing_obj_finder.py
 +dulwich/tests/test_object_store.py
 +dulwich/tests/test_objects.py
 +dulwich/tests/test_objectspec.py
 +dulwich/tests/test_pack.py
 +dulwich/tests/test_patch.py
 +dulwich/tests/test_porcelain.py
 +dulwich/tests/test_protocol.py
 +dulwich/tests/test_reflog.py
 +dulwich/tests/test_refs.py
 +dulwich/tests/test_repository.py
 +dulwich/tests/test_server.py
 +dulwich/tests/test_stash.py
 +dulwich/tests/test_utils.py
 +dulwich/tests/test_walk.py
 +dulwich/tests/test_web.py
 +dulwich/tests/utils.py
 +dulwich/tests/compat/__init__.py
 +dulwich/tests/compat/server_utils.py
 +dulwich/tests/compat/test_client.py
 +dulwich/tests/compat/test_pack.py
 +dulwich/tests/compat/test_repository.py
 +dulwich/tests/compat/test_server.py
 +dulwich/tests/compat/test_utils.py
 +dulwich/tests/compat/test_web.py
 +dulwich/tests/compat/utils.py
 +dulwich/tests/data/blobs/11/11111111111111111111111111111111111111
 +dulwich/tests/data/blobs/6f/670c0fb53f9463760b7295fbb814e965fb20c8
 +dulwich/tests/data/blobs/95/4a536f7819d40e6f637f849ee187dd10066349
 +dulwich/tests/data/blobs/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
 +dulwich/tests/data/commits/0d/89f20333fbb1d2f3a94da77f4981373d8f4310
 +dulwich/tests/data/commits/5d/ac377bdded4c9aeb8dff595f0faeebcc8498cc
 +dulwich/tests/data/commits/60/dacdc733de308bb77bb76ce0fb0f9b44c9769e
 +dulwich/tests/data/indexes/index
 +dulwich/tests/data/packs/pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.idx
 +dulwich/tests/data/packs/pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.pack
 +dulwich/tests/data/repos/.gitattributes
 +dulwich/tests/data/repos/issue88_expect_ack_nak_client.export
 +dulwich/tests/data/repos/issue88_expect_ack_nak_other.export
 +dulwich/tests/data/repos/issue88_expect_ack_nak_server.export
 +dulwich/tests/data/repos/server_new.export
 +dulwich/tests/data/repos/server_old.export
 +dulwich/tests/data/repos/a.git/HEAD
 +dulwich/tests/data/repos/a.git/packed-refs
 +dulwich/tests/data/repos/a.git/objects/28/237f4dc30d0d462658d6b937b08a0f0b6ef55a
 +dulwich/tests/data/repos/a.git/objects/2a/72d929692c41d8554c07f6301757ba18a65d91
 +dulwich/tests/data/repos/a.git/objects/4e/f30bbfe26431a69c3820d3a683df54d688f2ec
 +dulwich/tests/data/repos/a.git/objects/4f/2e6529203aa6d44b5af6e3292c837ceda003f9
 +dulwich/tests/data/repos/a.git/objects/7d/9a07d797595ef11344549b8d08198e48c15364
 +dulwich/tests/data/repos/a.git/objects/a2/96d0bb611188cabb256919f36bc30117cca005
 +dulwich/tests/data/repos/a.git/objects/a9/0fa2d900a17e99b433217e988c4eb4a2e9a097
 +dulwich/tests/data/repos/a.git/objects/b0/931cadc54336e78a1d980420e3268903b57a50
 +dulwich/tests/data/repos/a.git/objects/ff/d47d45845a8f6576491e1edb97e3fe6a850e7f
 +dulwich/tests/data/repos/a.git/refs/heads/master
 +dulwich/tests/data/repos/a.git/refs/tags/mytag
 +dulwich/tests/data/repos/empty.git/HEAD
 +dulwich/tests/data/repos/empty.git/config
 +dulwich/tests/data/repos/empty.git/objects/info/.gitignore
 +dulwich/tests/data/repos/empty.git/objects/pack/.gitignore
 +dulwich/tests/data/repos/empty.git/refs/heads/.gitignore
 +dulwich/tests/data/repos/empty.git/refs/tags/.gitignore
 +dulwich/tests/data/repos/ooo_merge.git/HEAD
 +dulwich/tests/data/repos/ooo_merge.git/objects/29/69be3e8ee1c0222396a5611407e4769f14e54b
 +dulwich/tests/data/repos/ooo_merge.git/objects/38/74e9c60a6d149c44c928140f250d81e6381520
 +dulwich/tests/data/repos/ooo_merge.git/objects/6f/670c0fb53f9463760b7295fbb814e965fb20c8
 +dulwich/tests/data/repos/ooo_merge.git/objects/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
 +dulwich/tests/data/repos/ooo_merge.git/objects/76/01d7f6231db6a57f7bbb79ee52e4d462fd44d1
 +dulwich/tests/data/repos/ooo_merge.git/objects/90/182552c4a85a45ec2a835cadc3451bebdfe870
 +dulwich/tests/data/repos/ooo_merge.git/objects/95/4a536f7819d40e6f637f849ee187dd10066349
 +dulwich/tests/data/repos/ooo_merge.git/objects/b2/a2766a2879c209ab1176e7e778b81ae422eeaa
 +dulwich/tests/data/repos/ooo_merge.git/objects/f5/07291b64138b875c28e03469025b1ea20bc614
 +dulwich/tests/data/repos/ooo_merge.git/objects/f9/e39b120c68182a4ba35349f832d0e4e61f485c
 +dulwich/tests/data/repos/ooo_merge.git/objects/fb/5b0425c7ce46959bec94d54b9a157645e114f5
 +dulwich/tests/data/repos/ooo_merge.git/refs/heads/master
 +dulwich/tests/data/repos/refs.git/HEAD
 +dulwich/tests/data/repos/refs.git/packed-refs
 +dulwich/tests/data/repos/refs.git/objects/3b/9e5457140e738c2dcd39bf6d7acf88379b90d1
 +dulwich/tests/data/repos/refs.git/objects/3e/c9c43c84ff242e3ef4a9fc5bc111fd780a76a8
 +dulwich/tests/data/repos/refs.git/objects/42/d06bd4b77fed026b154d16493e5deab78f02ec
 +dulwich/tests/data/repos/refs.git/objects/a1/8114c31713746a33a2e70d9914d1ef3e781425
 +dulwich/tests/data/repos/refs.git/objects/cd/a609072918d7b70057b6bef9f4c2537843fcfe
 +dulwich/tests/data/repos/refs.git/objects/df/6800012397fb85c56e7418dd4eb9405dee075c
 +dulwich/tests/data/repos/refs.git/refs/heads/40-char-ref-aaaaaaaaaaaaaaaaaa
 +dulwich/tests/data/repos/refs.git/refs/heads/loop
 +dulwich/tests/data/repos/refs.git/refs/heads/master
 +dulwich/tests/data/repos/refs.git/refs/tags/refs-0.2
 +dulwich/tests/data/repos/simple_merge.git/HEAD
 +dulwich/tests/data/repos/simple_merge.git/objects/0d/89f20333fbb1d2f3a94da77f4981373d8f4310
 +dulwich/tests/data/repos/simple_merge.git/objects/1b/6318f651a534b38f9c7aedeebbd56c1e896853
 +dulwich/tests/data/repos/simple_merge.git/objects/29/69be3e8ee1c0222396a5611407e4769f14e54b
 +dulwich/tests/data/repos/simple_merge.git/objects/4c/ffe90e0a41ad3f5190079d7c8f036bde29cbe6
 +dulwich/tests/data/repos/simple_merge.git/objects/5d/ac377bdded4c9aeb8dff595f0faeebcc8498cc
 +dulwich/tests/data/repos/simple_merge.git/objects/60/dacdc733de308bb77bb76ce0fb0f9b44c9769e
 +dulwich/tests/data/repos/simple_merge.git/objects/6f/670c0fb53f9463760b7295fbb814e965fb20c8
 +dulwich/tests/data/repos/simple_merge.git/objects/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
 +dulwich/tests/data/repos/simple_merge.git/objects/90/182552c4a85a45ec2a835cadc3451bebdfe870
 +dulwich/tests/data/repos/simple_merge.git/objects/95/4a536f7819d40e6f637f849ee187dd10066349
 +dulwich/tests/data/repos/simple_merge.git/objects/ab/64bbdcc51b170d21588e5c5d391ee5c0c96dfd
 +dulwich/tests/data/repos/simple_merge.git/objects/d4/bdad6549dfedf25d3b89d21f506aff575b28a7
 +dulwich/tests/data/repos/simple_merge.git/objects/d8/0c186a03f423a81b39df39dc87fd269736ca86
 +dulwich/tests/data/repos/simple_merge.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
 +dulwich/tests/data/repos/simple_merge.git/refs/heads/master
 +dulwich/tests/data/repos/submodule/dotgit
 +dulwich/tests/data/tags/71/033db03a03c6a36721efcf1968dd8f8e0cf023
 +dulwich/tests/data/trees/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
 +examples/clone.py
 +examples/config.py
 +examples/diff.py
 +examples/latest_change.py
 +examples/memoryrepo.py
diff --cc setup.cfg
index 561aa94835c1be5392d8cc2172845be2442efe09,0000000000000000000000000000000000000000..8bfd5a12f85b8fbb6c058cf67dd23da690835ea0
mode 100644,000000..100644
--- /dev/null
+++ b/setup.cfg
@@@ -1,30 -1,0 +1,4 @@@
- [metadata]
- name = dulwich
- author = Jelmer Vernooij
- author_email = jelmer@jelmer.uk
- home-page = https://www.dulwich.io/
- description = file:README.md
- summary = Python Git Library
- classifiers = 
-       Development Status :: 4 - Beta
-       License :: OSI Approved :: Apache Software License
-       Programming Language :: Python :: 2.7
-       Programming Language :: Python :: 3.3
-       Programming Language :: Python :: 3.4
-       Programming Language :: Python :: 3.5
-       Programming Language :: Python :: 3.6
-       Programming Language :: Python :: Implementation :: CPython
-       Programming Language :: Python :: Implementation :: PyPy
-       Operating System :: POSIX
-       Operating System :: Microsoft :: Windows
-       Topic :: Software Development :: Version Control
- keyword = git, vcs
- project_urls = 
-       Bug Tracker = https://github.com/dulwich/dulwich/issues
- [build_ext]
 +[egg_info]
 +tag_build = 
 +tag_date = 0
 +