diff -r c0cdef06fd16 -r 05500124d7fb setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Thu Dec 13 10:01:32 2012 +0100 @@ -0,0 +1,15 @@ +#!/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'], + ) +