projects
/
linpy.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Update drop_dims, now works with more than 2 dims passed
[linpy.git]
/
setup.py
diff --git
a/setup.py
b/setup.py
index
a0dfb8a
..
368983e
100755
(executable)
--- a/
setup.py
+++ b/
setup.py
@@
-1,10
+1,15
@@
#!/usr/bin/env python3
#!/usr/bin/env python3
-from distutils.core import setup
+from distutils.core import setup
, Extension
setup(
name='pypol',
description='A polyhedral library based on ISL',
author='MINES ParisTech',
setup(
name='pypol',
description='A polyhedral library based on ISL',
author='MINES ParisTech',
- packages=['pypol']
+ packages=['pypol'],
+ ext_modules = [
+ Extension('pypol._islhelper',
+ sources=['pypol/_islhelper.c'],
+ libraries=['isl'])
+ ]
)
)