sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 23:00:41 +0100
changeset 52 50a1857557da
parent 47 537d7c6b48a2
permissions -rw-r--r--
Update SDL driver: Enlarge char, attr to 32 bits, 64 bits per terminal cell. Colors and attributes are complete, only blink does not work.

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

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