Revision: | 1.1 |
Committed: | Sun Nov 12 15:03:42 2006 UTC (18 years, 5 months ago) by eulisse |
Branch: | MAIN |
Log Message: | First import. used to patch python modules (like sqlobject, sqlalchemy and others) which use the setuptools for downloading externals. This patch reverts their behaviour to use the more streamlined and standard distfiles tools. |
# | User | Rev | Content |
---|---|---|---|
1 | eulisse | 1.1 | --- setup.py 2005-10-02 00:59:54.000000000 +0200 |
2 | +++ setup.py 2006-02-27 23:05:28.000000000 +0100 | ||
3 | @@ -1,9 +1,7 @@ | ||
4 | # ez_setup doesn't work with Python 2.2, so we use distutils | ||
5 | # in that case: | ||
6 | try: | ||
7 | - from ez_setup import use_setuptools | ||
8 | - use_setuptools() | ||
9 | - from setuptools import setup | ||
10 | + from distutils.core import setup, Extension, Command | ||
11 | except ImportError: | ||
12 | from distutils.core import setup |