# HG changeset patch # User Goffi # Date 1624015184 -7200 # Node ID d505d9ee792ee0f4deaeed22a9eea42d4d672d31 # Parent bfab04d0a745e4d37e6b87d3877c34fd8b232916 v0.8.0b1 release diff -r bfab04d0a745 -r d505d9ee792e README --- a/README Sun Oct 27 18:55:47 2019 +0100 +++ b/README Fri Jun 18 13:19:44 2021 +0200 @@ -1,5 +1,5 @@ urwid-satext -(c) Jérôme Poisson aka Goffi 2008-2019 +(c) Jérôme Poisson aka Goffi 2008-2021 (c) Adrien Cossa 2014-2016 urwid-satext, or urwid SàT extensions, is a widgets library based on Urwid diff -r bfab04d0a745 -r d505d9ee792e setup.py --- a/setup.py Sun Oct 27 18:55:47 2019 +0100 +++ b/setup.py Fri Jun 18 13:19:44 2021 +0200 @@ -1,5 +1,4 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- +#!/usr/bin/env python3 from setuptools import setup from glob import glob @@ -8,18 +7,23 @@ setup( name=name, - version="0.8.0.dev0", + version="0.8.0b1", description="SàT extension widgets for Urwid", - long_description=("Urwid SàT extension widgets is a set of widgets for the console " - "user interface library Urwid (http://excess.org/urwid/). This " - "library, originaly made for the SàT project, was eventually " - "separated so other softwares can use it. Widgets provided " - "include password text box, tab container, dialogs, file chooser " - "etc. Feel free to go to the project page for more informations."), + long_description=( + "Urwid SàT extension widgets is a set of widgets for the console " + "user interface library Urwid (http://excess.org/urwid/). This " + 'library, originaly made for the Libervia (formerly "SàT") project, was ' + "eventually separated so other softwares can use it. Widgets provided " + "include password text box, tab container, dialogs, file chooser " + "etc. Feel free to go to the project page for more informations."), author="Goffi (Jérôme Poisson)", author_email="goffi@goffi.org", - url="http://wiki.goffi.org/wiki/Urwid-satext", + url="https://wiki.goffi.org/w/index.php/Urwid-satext", classifiers=[ + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Environment :: Console", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Intended Audience :: Developers", diff -r bfab04d0a745 -r d505d9ee792e urwid_satext/__init__.py --- a/urwid_satext/__init__.py Sun Oct 27 18:55:47 2019 +0100 +++ b/urwid_satext/__init__.py Fri Jun 18 13:19:44 2021 +0200 @@ -1,5 +1,4 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- +#!/usr/bin/env python3 # Urwid SàT extensions # Copyright (C) 2009-2016 Jérôme Poisson (goffi@goffi.org) @@ -21,4 +20,4 @@ gettext.install('urwid_satext') -__version__ = '0.7.0' +__version__ = '0.8.0b1'