Updated setup.py file to reflect requirement on newer version of dulwich package.

This commit is contained in:
Alex Regueiro 2013-09-13 02:41:36 +01:00
parent a5c98b616b
commit d502e713c1

View File

@ -16,7 +16,7 @@ setup(
maintainer='Augie Fackler',
maintainer_email='durin42@gmail.com',
url='http://hg-git.github.com/',
description='push and pull from a Git server using Mercurial',
description='push to and pull from a Git repository using Mercurial',
long_description="""
This extension lets you communicate (push and pull) with a Git server.
This way you can use Git hosting for your project or collaborate with a
@ -26,5 +26,5 @@ project that is in Git. A bridger of worlds, this plugin be.
license='GPLv2',
packages=['hggit'],
package_data={ 'hggit': ['help/git.rst'] },
install_requires=['dulwich>=0.8.6'] + extra_req,
install_requires=['dulwich>=0.9.1'] + extra_req,
)