# L-15 MCS 507 Mon 25 Sep 2023 : integral4pi_cdeffun_setup.py

"""
We build the extension integral4pi_cdeffun with cython by
python integral4pi_cdeffun_setup.py build_ext --inplace
"""

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

EXT_MODULES = [Extension("integral4pi_cdeffun",
                        ["integral4pi_cdeffun.pyx"])]

setup(
    name = 'integral approximation for pi' ,
    cmdclass = {'build_ext': build_ext},
    ext_modules = EXT_MODULES
)
