changeset 145:d505d9ee792e v0.8.0b1

v0.8.0b1 release
author Goffi <goffi@goffi.org>
date Fri, 18 Jun 2021 13:19:44 +0200
parents bfab04d0a745
children 4d6a29358f32
files README setup.py urwid_satext/__init__.py
diffstat 3 files changed, 17 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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",
--- 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'