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

"""
We build the extension module defined by hello.py with cython via
python3 hello_setup.py build_ext --inplace
"""

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

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

setup(
    name = 'hello world' ,
    cmdclass = {'build_ext': build_ext},
    ext_modules = EXT_MODULES
)
