From d85523b6a6dc5452105a887f3d5fe60534b57332 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 28 Sep 2010 09:01:34 -0400 Subject: [PATCH] typo in setup.py. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f0179bb..a5d2f33 100644 --- a/setup.py +++ b/setup.py @@ -17,14 +17,14 @@ if sys.argv[-1] == "publish": setup( name='tablib', - version='0.8.0', + version='0.8.1', description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), author='Kenneth Reitz', author_email='me@kennethreitz.com', url='http://github.com/kennethreitz/tablib', - packages=['tablib'm 'tablib.formats'], + packages=['tablib', 'tablib.formats'], install_requires=['xlwt', 'simplejson', 'PyYAML'], license='MIT', classifiers=(