inc version, fix download url
authorBob Halley <halley@dnspython.org>
Sat, 13 Jan 2007 01:42:36 +0000 (01:42 +0000)
committerBob Halley <halley@dnspython.org>
Sat, 13 Jan 2007 01:42:36 +0000 (01:42 +0000)
setup.py

index 2bb2a259ef208fc2a9f699c2912542a8206a301b..84f0722a2e2a490e6f93f2abe9ede83a7462a1eb 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 import sys
 from distutils.core import setup
 
-version = '1.5.0'
+version = '1.6.0'
 
 kwargs = {
     'name' : 'dnspython',
@@ -42,7 +42,8 @@ direct manipulation of DNS zones, messages, names, and records.""",
 
 if sys.hexversion >= 0x02020300:
     kwargs['download_url'] = \
-       'http://www.dnspython.org/kits/dnspython-%s.tar.gz' % version
+       'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version,
+                                                                  version)
     kwargs['classifiers'] = [
         "Development Status :: 5 - Production/Stable",
         "Intended Audience :: Developers",