X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/blobdiff_plain/7f4b67d7f215fd22223ced8526783cd45f7b0e29..c245433e909ee0844b562e951cfc07f92cb8e787:/setup.py diff --git a/setup.py b/setup.py index 1e7b770..b685eac 100755 --- a/setup.py +++ b/setup.py @@ -17,6 +17,8 @@ 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", @@ -24,14 +26,13 @@ setup( description="PyAFS - Python bindings for AFS", author="Evan Broder", author_email="broder@mit.edu", - license="MIT", + license="GPL", requires=['Pyrex'], 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) ],