From 254471e3117adf59dc3d1d6b8f9b6d6252e8242d Mon Sep 17 00:00:00 2001 From: Emile Anclin Date: Thu, 19 Mar 2009 17:14:52 +0100 Subject: [PATCH] disable setuptools XXX --- setup.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index e2cb6ea15..86e8a2aeb 100644 --- a/setup.py +++ b/setup.py @@ -13,16 +13,18 @@ import sys import shutil from os.path import isdir, exists, join, walk -try: - from setuptools import setup - from setuptools.command import install_lib - USE_SETUPTOOLS = 1 -except ImportError: - from distutils.core import setup - from distutils.command import install_lib - USE_SETUPTOOLS = 0 +# FIXME : setup.py doesn't work with setuptools so we use distutils -assert USE_SETUPTOOLS +#try: + #from setuptools import setup + #from setuptools.command import install_lib + #USE_SETUPTOOLS = 1 +#except ImportError: +from distutils.core import setup +from distutils.command import install_lib +USE_SETUPTOOLS = 0 + +#assert USE_SETUPTOOLS # import required features from __pkginfo__ import modname, version, license, short_desc, long_desc, \