]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
add python 2.5 distutils metadata
authorBob Halley <halley@dnspython.org>
Fri, 29 Sep 2006 23:17:45 +0000 (23:17 +0000)
committerBob Halley <halley@dnspython.org>
Fri, 29 Sep 2006 23:17:45 +0000 (23:17 +0000)
setup.py

index 5b6d6eef632112048319814199be8a5b2b219441..1c296460c9e31b7636c6b712b5d15268a5ace7d8 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -55,4 +55,8 @@ if sys.hexversion >= 0x02020300:
         "Topic :: Software Development :: Libraries :: Python Modules",
         ]
 
+if sys.hexversion >= 0x02050000:
+    kwargs['requires'] = []
+    kwargs['provides'] = ['dns']
+
 setup(**kwargs)