sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Mon, 07 Jan 2013 23:15:17 +0100
changeset 56 282a07d20680
parent 47 537d7c6b48a2
permissions -rw-r--r--
Drop PyGame driver, replaced by compiled SDL driver.

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

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