#!/usr/bin/env python3

from distutils.core import setup

setup(
    name='pypol',
    description='A polyhedral library based on ISL',
    author='MINES ParisTech',
    packages=['pypol']
)
