setup.py
author Radek Brich <radek.brich@devl.cz>
Wed, 02 Jan 2013 11:48:36 +0100
changeset 44 d77f1ae3786c
parent 30 05500124d7fb
child 69 4e7be77bafff
permissions -rw-r--r--
Add Widget.spot property. TreeView: move spot with cursor node. ScrollView: scroll when spot moves.

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