summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2010-11-04 04:49:31 -0400
committerKenneth Reitz <me@kennethreitz.com>2010-11-04 04:49:31 -0400
commit8d6e75ad20a2ae56ae7270ff7f4f8943af69e8db (patch)
tree6858134cfb7ecba5d8e4cb98fc41b56a85ce7620 /setup.py
parent30487999ba7f245fc385036c89effcc3e23807cd (diff)
downloadtablib-8d6e75ad20a2ae56ae7270ff7f4f8943af69e8db.tar.gz
Fixes for 0.9.0.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/setup.py b/setup.py
index 50159a5..a5c5588 100644
--- a/setup.py
+++ b/setup.py
@@ -17,12 +17,9 @@ if sys.argv[-1] == "publish":
required = []
-# if sys.version_info < (2, 6):
-# required.append('simplejson')
-
setup(
name='tablib',
- version='0.8.5',
+ version='0.9.0',
description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
@@ -50,9 +47,4 @@ setup(
# 'Programming Language :: Python :: 3.0',
# 'Programming Language :: Python :: 3.1',
),
- # entry_points={
- # 'console_scripts': [
- # 'tabbed = tablib.cli:start',
- # ],
- # }
)