Mercurial > urwid-satext
changeset 102:ba19778eabf2
set the minimal version of urwid to 1.2.0
author | souliane <souliane@mailoo.org> |
---|---|
date | Thu, 11 Sep 2014 10:38:51 +0200 |
parents | de3f1cdd5c4c |
children | 57463d1fa7f6 |
files | README setup.py |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/README Mon Sep 08 23:40:59 2014 +0200 +++ b/README Thu Sep 11 10:38:51 2014 +0200 @@ -28,7 +28,9 @@ ** Installation ** -just type as root: +Install the dependency: urwid >= 1.2.0 + +Just type as root: $ python setup.py install ** What are the widgets provided ? **
--- a/setup.py Mon Sep 08 23:40:59 2014 +0200 +++ b/setup.py Thu Sep 11 10:38:51 2014 +0200 @@ -25,5 +25,5 @@ data_files=[(path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/urwid_satext.mo']), ('share/doc/%s/examples' % name, glob("examples/*.py")), ('share/doc/%s' % name, ['COPYING','COPYING.LESSER','README', "CHANGELOG"])], - install_requires = ['urwid'] + install_requires=['urwid >= 1.2.0'] )