1 from distutils.core import setup
2 from Cython.Build import cythonize
3
4 setup(
5 ext_modules = cythonize("cython/sdlterm.pyx")
6 )
7