setup.py
author Radek Brich <radek.brich@devl.cz>
Sat, 19 Jan 2013 13:05:21 +0100
changeset 63 2a0e04091898
parent 30 05500124d7fb
child 69 4e7be77bafff
permissions -rw-r--r--
Rework MenuBar. Add MenuButton. Add mouse event cascading to floaters. LinearLayout: spacing now applies to all children, not just those with expand. Fix Window resize request inside layouts. UnicodeGraphics: prepare for styling/theming.

#!/usr/bin/env python

from distutils.core import setup

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'],
    )