sdlterm/setup.py
changeset 69 4e7be77bafff
parent 68 bc51b0220be2
child 70 db2eab0beb45
equal deleted inserted replaced
68:bc51b0220be2 69:4e7be77bafff
     1 from distutils.core import setup
       
     2 from Cython.Build import cythonize
       
     3 
       
     4 setup(
       
     5     ext_modules = cythonize("cython/sdlterm.pyx")
       
     6 )
       
     7