]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
call the python3 kit dnspython3-x.y.z
authorBob Halley <halley@nominum.com>
Thu, 12 May 2011 14:46:29 +0000 (15:46 +0100)
committerBob Halley <halley@nominum.com>
Thu, 12 May 2011 14:46:29 +0000 (15:46 +0100)
setup.py

index 9d7cbad816fb615df95b2913968e81b416a69ac5..bb58e8411ea5b35fb05e6e111ad0c9c51d3bdbae 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Copyright (C) 2003-2007, 2009, 2010 Nominum, Inc.
 #
@@ -21,7 +21,7 @@ from distutils.core import setup
 version = '1.9.5'
 
 kwargs = {
-    'name' : 'dnspython',
+    'name' : 'dnspython3',
     'version' : version,
     'description' : 'DNS toolkit',
     'long_description' : \
@@ -39,8 +39,8 @@ direct manipulation of DNS zones, messages, names, and records.""",
     'url' : 'http://www.dnspython.org',
     'packages' : ['dns', 'dns.rdtypes', 'dns.rdtypes.IN', 'dns.rdtypes.ANY'],
     'download_url' : \
-       'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version,
-                                                                  version),
+       'http://www.dnspython.org/kits/%s/dnspython3-%s.tar.gz' % (version,
+                                                                   version),
     'classifiers' : [
         "Development Status :: 5 - Production/Stable",
         "Intended Audience :: Developers",