From: Evan Broder Date: Fri, 1 May 2009 23:06:55 +0000 (-0400) Subject: setuptools apparently is too retarded for Cython. Switch to distutils. X-Git-Tag: 0.1.0~26 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/c2beb3ac86e4a53d5e4f2c378d91f97abc92fba5?hp=cf442ae4430cbfc97da4d69a59ec9245f80efdac setuptools apparently is too retarded for Cython. Switch to distutils. Signed-off-by: Evan Broder --- 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"),