Skip to content

Commit

Permalink
Packaging updates
Browse files Browse the repository at this point in the history
  • Loading branch information
firecat53 committed Jan 17, 2016
1 parent a07cebc commit 3677a40
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
*Version 1.4.2 2016/01/17*

- Fix some packaging issues
- Can now run 'python setup.py test' to run the unit tests

*Version 1.4.1 2015/04/04*

- File/data information popup
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) 2015, Scott Hansen
Copyright (c) 2016, Scott Hansen

Copyright (c) 2010, Andrew M. Kuchling

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include sample/*
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@
pass

setup(name="tabview",
version="1.4.1",
version="1.4.2",
description="A curses command-line CSV and list (tabular data) viewer",
long_description=open('README.rst').read(),
author="Scott Hansen",
author_email="firecat4153@gmail.com",
url="https://github.com/firecat53/tabview",
download_url="https://github.com/firecat53/tabview/tarball/1.4.0",
download_url="https://github.com/firecat53/tabview/tarball/1.4.2",
packages=['tabview'],
scripts=['bin/tabview'],
package_data={'tabview': ['README.rst']},
data_files=[('share/doc/tabview',
['README.rst', 'LICENSE.txt', 'CHANGELOG.rst'])],
test_suite='test/test_tabview.py',
license="MIT",
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -38,6 +39,6 @@
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Utilities',
],
keywords='data spreadsheet view viewer console curses csv comma separated values',

keywords=("data spreadsheet view viewer console "
"curses csv comma separated values"),
)
File renamed without changes.
File renamed without changes.

0 comments on commit 3677a40

Please sign in to comment.