setup.py
author Radek Brich <radek.brich@devl.cz>
Sun, 03 Feb 2013 16:38:41 +0100
changeset 77 fc1989059e19
parent 69 4e7be77bafff
permissions -rw-r--r--
Propagate "quit" event, do not just terminate application. Resize: flag widgets to be resized, do resizes only once before draw. Draw: flag widgets to be redrawn, do not draw everything on any event.

#!/usr/bin/env python

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

setup(
    name='tuikit',
    version='0.1',
    description='Curses UI toolkit',
    author='Radek Brich',
    author_email='radek.brich@devl.cz',
    url='http://hg.devl.cz/tuikit/',
    keywords=['curses', 'tui', 'toolkit'],
    packages=['tuikit'],
    ext_modules = cythonize("sdlterm/cython/sdlterm.pyx"),
    )