summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBob Halley <halley@nominum.com>2011-04-05 12:29:21 +0100
committerBob Halley <halley@nominum.com>2011-04-05 12:29:21 +0100
commit0c32043d0f08c5b67d02ee073c752e1493ef8e2f (patch)
treeecb680019d553776588980cda3bd4b622092735a /setup.py
parent95849d3ecbc90006b8bffcf452840f6d32863648 (diff)
downloaddnspython-0c32043d0f08c5b67d02ee073c752e1493ef8e2f.tar.gz
increment version
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/setup.py b/setup.py
index e9119b7..de8bea3 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
import sys
from distutils.core import setup
-version = '1.9.4'
+version = '1.9.5'
kwargs = {
'name' : 'dnspython',
@@ -38,13 +38,9 @@ direct manipulation of DNS zones, messages, names, and records.""",
'license' : 'BSD-like',
'url' : 'http://www.dnspython.org',
'packages' : ['dns', 'dns.rdtypes', 'dns.rdtypes.IN', 'dns.rdtypes.ANY'],
- }
-
-if sys.hexversion >= 0x02020300:
- kwargs['download_url'] = \
- 'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version,
- version)
- kwargs['classifiers'] = [
+ 'download_url' : \
+ 'http://www.dnspython.org/kits/%s/dnspython-%s.tar.gz' % (version, version),
+ 'classifiers' : [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
@@ -54,7 +50,8 @@ if sys.hexversion >= 0x02020300:
"Programming Language :: Python",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development :: Libraries :: Python Modules",
- ]
+ ],
+ }
if sys.hexversion >= 0x02050000:
kwargs['requires'] = []