projects
/
invirt/packages/python-afs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge pull request #2 from dehnert/master
[invirt/packages/python-afs.git]
/
setup.py
diff --git
a/setup.py
b/setup.py
index
2a92096
..
4c5c317
100755
(executable)
--- a/
setup.py
+++ b/
setup.py
@@
-17,7
+17,7
@@
include_dirs = [os.path.join(os.path.dirname(__file__), 'afs'),
'%s/include' % root]
library_dirs = ['%s/lib' % root,
'%s/lib/afs' % root]
'%s/include' % root]
library_dirs = ['%s/lib' % root,
'%s/lib/afs' % root]
-if os.path.exists('%s/lib/libafsauthent_pic.a' % root):
+if os.path.exists('%s/lib/libafsauthent_pic.a' % root) or os.path.exists('%s/lib64/libafsauthent_pic.a' % root):
suffix = '_pic'
else:
suffix = ''
suffix = '_pic'
else:
suffix = ''
@@
-36,15
+36,16
@@
def PyAFSExtension(module, *args, **kwargs):
setup(
name="PyAFS",
setup(
name="PyAFS",
- version="0.0.0",
+ version="0.1.1",
description="PyAFS - Python bindings for AFS",
author="Evan Broder",
author_email="broder@mit.edu",
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=[
license="GPL",
requires=['Cython'],
packages=['afs', 'afs.tests'],
ext_modules=[
- PyAFSExtension("afs.afs"),
+ PyAFSExtension("afs._util"),
PyAFSExtension("afs._acl"),
PyAFSExtension("afs._fs"),
PyAFSExtension("afs._pts", libraries=['krb5']),
PyAFSExtension("afs._acl"),
PyAFSExtension("afs._fs"),
PyAFSExtension("afs._pts", libraries=['krb5']),