X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/blobdiff_plain/2d2104b92ce4f472ade76c8fbb737b1c9028f8ea..8de7871a5e5f6187514d5021fdfae89847933401:/setup.py diff --git a/setup.py b/setup.py index 6dc758c..b0dbe5b 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages from distutils.extension import Extension -from Pyrex.Distutils import build_ext +from Cython.Distutils import build_ext import sys import os @@ -13,9 +13,12 @@ for root in ['/Library/OpenAFS/Tools', if os.path.exists('%s/include/afs/afs.h' % root): break -include_dirs = ['%s/include' % root] +include_dirs = [os.path.join(os.path.dirname(__file__), 'afs'), + '%s/include' % root] library_dirs = ['%s/lib' % root, '%s/lib/afs' % root] +libraries = ['bos', 'volser', 'vldb', 'afsrpc', 'afsauthent', 'cmd', + 'usd', 'audit', 'resolv', 'com_err'] setup( name="PyAFS", @@ -23,14 +26,13 @@ setup( description="PyAFS - Python bindings for AFS", author="Evan Broder", author_email="broder@mit.edu", - license="MIT", - requires=['Pyrex'], + license="GPL", + requires=['Cython'], packages=find_packages(), ext_modules=[ Extension("afs._pts", ["afs/_pts.pyx"], - libraries=['bos', 'volser', 'vldb', 'afsrpc', 'afsauthent', - 'cmd', 'usd', 'audit'], + libraries=libraries, include_dirs=include_dirs, library_dirs=library_dirs) ],