Skip to content

Commit

Permalink
Release 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
firecat53 committed Nov 14, 2017
1 parent 2950c2b commit bf065f2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Scott Hansen <firecat four one five three at gmail dot com>

Based on code contributed by A.M. Kuchling <amk at amk dot ca>

Copyright (c) 2016, Scott Hansen
Copyright (c) 2017, Scott Hansen

Copyright (c) 2010, Andrew M. Kuchling

Expand Down
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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']},
Expand All @@ -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',
Expand Down

0 comments on commit bf065f2

Please sign in to comment.