changeset 608:681298a09daf

Updated `setup.py` file to reflect requirement on newer version of dulwich package.
author Alex Regueiro <alex@noldorin.com>
date Fri, 13 Sep 2013 02:41:36 +0100
parents 980c37f6a8f9
children 60a4d55fdaa6
files setup.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
     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 @@
     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,
 )