Fix download url, add version number.
authorJelmer Vernooij <jelmer@samba.org>
Wed, 14 Jan 2009 18:24:38 +0000 (18:24 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 14 Jan 2009 18:24:38 +0000 (18:24 +0000)
dulwich/__init__.py
setup.py

index 1151b923dc15cacab5279fe36d72ae8e7bc818d9..13a8d696a7404823a3c2cc863f04da491e236235 100644 (file)
@@ -21,3 +21,5 @@ import client
 import protocol
 import repo
 import server
+
+__version__ = (0, 1, 0)
index 87eaf9690d5d99b20c0de9d8aff50c7670eecb9a..82d7fc448a4d9f38212a34e7be50fef4cd04a323 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -4,12 +4,14 @@
 
 from distutils.core import setup
 
+dulwich_version_string = '0.1.0'
+
 setup(name='dulwich',
       description='Pure-Python Git Library',
       keywords='git',
-      version='0.0.1',
+      version=dulwich_version_string,
       url='http://launchpad.net/dulwich',
-      download_url='http://launchpad.net/dulwich',
+      download_url='http://samba.org/~jelmer/dulwich/dulwich-%s.tar.gz' % dulwich_version_string,
       license='GPL',
       author='Jelmer Vernooij',
       author_email='jelmer@samba.org',