Mercurial > urwid-satext
diff setup.py @ 31:42cb54666fc2
Added basic setup.py
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 28 Dec 2010 15:42:37 +0100 |
parents | |
children | 875ff127b2dd |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Dec 28 15:42:37 2010 +0100 @@ -0,0 +1,13 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +from distutils.core import setup + +setup(name='urwid-satext', + version='0.1.0', + description=u'SàT extension widgets for Urwid', + author='Goffi (Jérôme Poisson)', + author_email='goffi@goffi.org', + url='http://wiki.goffi.org/wiki/Urwid-satext', + packages=['urwid_satext'], + )