sdlterm/setup.py
author Radek Brich <radek.brich@devl.cz>
Sat, 05 Jan 2013 18:56:45 +0100
changeset 51 dce7325109c1
parent 47 537d7c6b48a2
permissions -rw-r--r--
Clean up: expand unwanted tabs.

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

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