sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Wed, 23 Jan 2013 00:59:21 +0100
changeset 66 824a9837bbb3
parent 47 537d7c6b48a2
permissions -rw-r--r--
Fix.

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

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