Remove useless header in _isl.c
[linpy.git] / setup.py
index a0dfb8a..b530f28 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,15 @@
 #!/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',
-    packages=['pypol']
+    packages=['pypol'],
+    ext_modules = [
+        Extension('pypol._isl',
+            sources=['pypol/_isl.c'],
+            libraries=['isl'])
+    ]
 )