X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/blobdiff_plain/b96524d6b92de2d8aeb8b1aa5f83f2dbc822f5f2..39f071c79362ad878f178eae7b854a43908a369d:/setup.py diff --git a/setup.py b/setup.py index 3e593e3..3b7b0ea 100755 --- a/setup.py +++ b/setup.py @@ -36,17 +36,19 @@ 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", + url="http://github.com/ebroder/pyafs/", license="GPL", requires=['Cython'], packages=['afs', 'afs.tests'], ext_modules=[ - PyAFSExtension("afs.afs"), - PyAFSExtension("afs._pts", libraries=['krb5']), + PyAFSExtension("afs._util"), PyAFSExtension("afs._acl"), + PyAFSExtension("afs._fs"), + PyAFSExtension("afs._pts", libraries=['krb5']), ], cmdclass= {"build_ext": build_ext} )