summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2007-01-13 01:42:36 +0000
committerBob Halley <halley@dnspython.org>2007-01-13 01:42:36 +0000
commitcde625a942cb33299d74387f8c8c17c2c223643b (patch)
tree8851d0a173172226f1452f5b833bfc2c8adb2d0a /setup.py
parent1991ac6c70ffbcf3b1e5264bbb5b251a6d5953e1 (diff)
downloaddnspython-cde625a942cb33299d74387f8c8c17c2c223643b.tar.gz
inc version, fix download url
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 2bb2a25..84f0722 100755
--- 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",