diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 56ab014..0500edb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +*Version 1.4.3 2017/11/13* + + - Added an additional parse step for space-delimited files: + 1. Replace multiple spaces (such as those to align columns) with a single + space. + 2. If (and only if) the top line begins with a standard comment character + ('#' or '%'), it is removed. + - Remove '0' for BOL and change numeric sort to '#'/'@' + - Add numeric sort + - Provide ability to specify quotechar + *Version 1.4.2 2016/01/17* - Fix some packaging issues diff --git a/LICENSE.txt b/LICENSE.txt index a0b6047..dbe3775 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ Scott Hansen Based on code contributed by A.M. Kuchling -Copyright (c) 2016, Scott Hansen +Copyright (c) 2017, Scott Hansen Copyright (c) 2010, Andrew M. Kuchling diff --git a/setup.py b/setup.py index 89e57b8..8bb1b7a 100755 --- a/setup.py +++ b/setup.py @@ -1,15 +1,20 @@ #!/usr/bin/env python from distutils.core import setup +try: + # Setuptools only needed for building the package + import setuptools # noqa +except ImportError: + pass setup(name="tabview", - version="1.4.2", + version="1.4.3", description="A curses command-line CSV and list (tabular data) viewer", long_description=open('README.rst', 'rb').read().decode('utf-8'), author="Scott Hansen", author_email="firecat4153@gmail.com", url="https://github.com/firecat53/tabview", - download_url="https://github.com/firecat53/tabview/tarball/1.4.2", + download_url="https://github.com/firecat53/tabview/tarball/1.4.3", packages=['tabview'], scripts=['bin/tabview'], package_data={'tabview': ['README.rst']}, @@ -26,9 +31,10 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Scientific/Engineering', 'Topic :: Office/Business :: Financial :: Spreadsheet', 'Topic :: Scientific/Engineering :: Visualization',