Get information about the current cell.
[invirt/packages/python-afs.git] / setup.py
index 6dc758c..b685eac 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -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",
+    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)
         ],