projects
/
linpy.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added a few tests, might change the format though
[linpy.git]
/
setup.py
1
#!/usr/bin/env python3
2
3
from
distutils
.
core
import
setup
,
Extension
4
5
setup
(
6
name
=
'pypol'
,
7
description
=
'A polyhedral library based on ISL'
,
8
author
=
'MINES ParisTech'
,
9
packages
=[
'pypol'
],
10
ext_modules
= [
11
Extension
(
'pypol._islhelper'
,
12
sources
=[
'pypol/_islhelper.c'
],
13
libraries
=[
'isl'
])
14
]
15
)