From 506641ed3ecd77e5408a9d37f1a91d7a18e87446 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 29 Sep 2006 23:17:45 +0000 Subject: [PATCH] add python 2.5 distutils metadata --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 5b6d6eef..1c296460 100755 --- 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) -- 2.47.3