sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 12:40:32 +0100
changeset 48 1f00e90fd72a
parent 47 537d7c6b48a2
permissions -rw-r--r--
Add SDL driver prototype. Update sdlterm: Handle keyboard, mouse events. Add glyph cache.

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

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