diff setup.py @ 9:0e37ee00beb7 MySQLdb

Merge changes from 1.2 branch (r470:483): Mostly build-related.
author adustman
date Mon, 26 Feb 2007 00:55:29 +0000
parents b6ecc521453f
children d55bfb1a4701
line wrap: on
line diff
--- a/setup.py	Sun Feb 11 21:36:29 2007 +0000
+++ b/setup.py	Mon Feb 26 00:55:29 2007 +0000
@@ -2,8 +2,8 @@
 
 import os
 import sys
-from distutils.core import setup
-from distutils.extension import Extension
+import ez_setup; ez_setup.use_setuptools()
+from setuptools import setup, Extension
 
 if sys.version_info < (2, 3):
     raise Error, "Python-2.3 or newer is required"
@@ -23,4 +23,5 @@
             ],
         **options),
     ]
+metadata['long_description'] = metadata['long_description'].replace(r'\n', '')
 setup(**metadata)