changeset 130:406c310e52b5 0.7.0a1

0.7.0a1 release
author Goffi <goffi@goffi.org>
date Wed, 04 Jul 2018 07:45:36 +0200
parents 2a1880d5d450
children 331546daef20
files CHANGELOG README setup.py urwid_satext/__init__.py
diffstat 4 files changed, 37 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGELOG	Fri Jul 14 08:31:10 2017 +0200
+++ b/CHANGELOG	Wed Jul 04 07:45:36 2018 +0200
@@ -1,5 +1,9 @@
 All theses changelog are not exhaustive, please check mercurial repository for more details.
 
+v 0.7.0 (NOT RELEASED YET):
+	- added edit + text attirbutes in InputDialog
+	- don't lower shortcuts anymore
+
 v 0.6.1 (12/07/2016):
 	- FileDialog: fixed unicode
 
--- a/README	Fri Jul 14 08:31:10 2017 +0200
+++ b/README	Wed Jul 04 07:45:36 2018 +0200
@@ -1,4 +1,4 @@
-urwid-satext v0.6.1
+urwid-satext
 (c) Jérôme Poisson aka Goffi 2008-2016
 (c) Adrien Cossa 2014-2016
 
--- a/setup.py	Fri Jul 14 08:31:10 2017 +0200
+++ b/setup.py	Wed Jul 04 07:45:36 2018 +0200
@@ -2,6 +2,7 @@
 # -*- coding: utf-8 -*-
 
 from ez_setup import use_setuptools
+
 use_setuptools()
 
 from setuptools import setup
@@ -9,21 +10,34 @@
 from os import path
 from glob import glob
 
-name = 'urwid_satext'
+name = "urwid_satext"
 
-setup(name=name,
-      version='0.6.1',
-      description=u'SàT extension widgets for Urwid',
-      long_description=u'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.',
-      author='Goffi (Jérôme Poisson)',
-      author_email='goffi@goffi.org',
-      url='http://wiki.goffi.org/wiki/Urwid-satext',
-      classifiers=['Environment :: Console',
-                   'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
-                   'Intended Audience :: Developers'],
-      packages=['urwid_satext'],
-      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 >= 1.2.0']
-     )
+setup(
+    name=name,
+    version="0.7.0a1",
+    description=u"SàT extension widgets for Urwid",
+    long_description=(u"Urwid SàT extension widgets is a set of widgets for the console "
+                      u"user interface library Urwid (http://excess.org/urwid/). This "
+                      u"library, originaly made for the SàT project, was eventually "
+                      u"separated so other softwares can use it. Widgets provided "
+                      u"include password text box, tab container, dialogs, file chooser "
+                      u"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",
+    classifiers=[
+        "Environment :: Console",
+        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
+        "Intended Audience :: Developers",
+    ],
+    packages=["urwid_satext"],
+    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 >= 1.2.0"],
+)
--- a/urwid_satext/__init__.py	Fri Jul 14 08:31:10 2017 +0200
+++ b/urwid_satext/__init__.py	Wed Jul 04 07:45:36 2018 +0200
@@ -17,4 +17,4 @@
 # You should have received a copy of the GNU Lesser General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-__version__ = '0.7.0D'
+__version__ = '0.7.0a1'