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
Store the cell name in the PTS object.
[invirt/packages/python-afs.git]
/
setup.py
diff --git
a/setup.py
b/setup.py
index
e368aa9
..
32e11c6
100755
(executable)
--- a/
setup.py
+++ b/
setup.py
@@
-20,6
+20,14
@@
library_dirs = ['%s/lib' % root,
libraries = ['afsauthent', 'afsrpc', 'afsutil', 'resolv']
define_macros = [('AFS_PTHREAD_ENV', None)]
libraries = ['afsauthent', 'afsrpc', 'afsutil', 'resolv']
define_macros = [('AFS_PTHREAD_ENV', None)]
+def PyAFSExtension(module):
+ return Extension(module,
+ ["%s.pyx" % module.replace('.', '/')],
+ libraries=libraries,
+ include_dirs=include_dirs,
+ library_dirs=library_dirs,
+ define_macros=define_macros)
+
setup(
name="PyAFS",
version="0.0.0",
setup(
name="PyAFS",
version="0.0.0",
@@
-30,12
+38,8
@@
setup(
requires=['Cython'],
packages=find_packages(),
ext_modules=[
requires=['Cython'],
packages=find_packages(),
ext_modules=[
- Extension("afs._pts",
- ["afs/_pts.pyx"],
- libraries=libraries,
- include_dirs=include_dirs,
- library_dirs=library_dirs,
- define_macros=define_macros)
+ PyAFSExtension("afs.afs"),
+ PyAFSExtension("afs._pts"),
],
cmdclass= {"build_ext": build_ext}
)
],
cmdclass= {"build_ext": build_ext}
)