sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 00:40:27 +0100
changeset 47 537d7c6b48a2
permissions -rw-r--r--
Add sdlterm prototype: extension module for SDL driver.

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

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