Code

oops, handle older pythons w.r.t. download_url
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 20 Feb 2003 22:59:01 +0000 (22:59 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 20 Feb 2003 22:59:01 +0000 (22:59 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1538 57a73879-2fb5-44c3-a270-3262357dd7e2

setup.py

index 807948bf6911b182ae8fced9a7b706523aeecf86..79e339c1af4cb345245412afd4b40891a971380e 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: setup.py,v 1.43 2003-02-20 07:14:26 richard Exp $
+# $Id: setup.py,v 1.44 2003-02-20 22:58:50 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -29,6 +29,7 @@ from glob import glob
 if sys.version < '2.2.3':
     from distutils.dist import DistributionMetadata
     DistributionMetadata.classifiers = None
+    DistributionMetadata.download_url = None
 
 from roundup.templates.builder import makeHtmlBase