From c2beb3ac86e4a53d5e4f2c378d91f97abc92fba5 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Fri, 1 May 2009 19:06:55 -0400 Subject: [PATCH] setuptools apparently is too retarded for Cython. Switch to distutils. Signed-off-by: Evan Broder --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 32e11c6..e3a5133 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/python -from setuptools import setup, find_packages +from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext import sys @@ -36,7 +36,7 @@ setup( author_email="broder@mit.edu", license="GPL", requires=['Cython'], - packages=find_packages(), + packages=['afs', 'afs.tests'], ext_modules=[ PyAFSExtension("afs.afs"), PyAFSExtension("afs._pts"), -- 1.7.9.5