X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/blobdiff_plain/4d3e823390c355e15521d9792de840eefad63cf7..1c401f84faaf875b84faee6c45e9b465960f4e18:/setup.py diff --git a/setup.py b/setup.py index 0a59340..1a0f0e2 100755 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def PyAFSExtension(module, *args, **kwargs): setup( name="PyAFS", - version="0.0.0", + version="0.1.0", description="PyAFS - Python bindings for AFS", author="Evan Broder", author_email="broder@mit.edu", @@ -44,9 +44,10 @@ setup( requires=['Cython'], packages=['afs', 'afs.tests'], ext_modules=[ - PyAFSExtension("afs.afs"), - PyAFSExtension("afs._pts"), + PyAFSExtension("afs._util"), PyAFSExtension("afs._acl"), + PyAFSExtension("afs._fs"), + PyAFSExtension("afs._pts", libraries=['krb5']), ], cmdclass= {"build_ext": build_ext} )