sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Sun, 06 Jan 2013 13:55:02 +0100
changeset 53 c4263588b716
parent 47 537d7c6b48a2
permissions -rw-r--r--
DriverSDL: Implement cursor, handle window resize.

from distutils.core import setup
from Cython.Build import cythonize

setup(
    ext_modules = cythonize("cython/sdlterm.pyx")
)