From ab7d96898b95a8d388a86be7f1444e9bfb409822 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Thu, 11 Dec 2008 10:10:53 +0100 Subject: [PATCH] Switch back to distutils Python 3.0 doesn't yet have setuptools, so temporarily we switch back to distutils. --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 02e4098..bd5e8ec 100755 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ #!/usr/bin/python -#import distutils -#from distutils.core import setup, Extension -from setuptools import setup, Extension +import distutils +from distutils.core import setup, Extension +#from setuptools import setup, Extension long_desc = """This is a C extension module for Python which implements extended attributes manipulation. It is a wrapper on top @@ -26,5 +26,5 @@ setup(name = "pyxattr", ext_modules = [Extension("xattr", ["xattr.c"], libraries=["attr"], define_macros=macros)], - test_suite = "test/test_xattr", + #test_suite = "test/test_xattr", ) -- 2.39.5