X-Git-Url: https://scm.cri.mines-paristech.fr/git/linpy.git/blobdiff_plain/841943174bb4d3b602e8e055592d8b54d1bb086d..f431ff9e62582cf7a4f12d17fb198c2fdaf47044:/setup.py diff --git a/setup.py b/setup.py index a0dfb8a..08587b7 100755 --- a/setup.py +++ b/setup.py @@ -1,10 +1,13 @@ #!/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/islhelper', sources=['pypol/islhelper.c']) + ] )