summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2010-10-04 11:55:26 -0400
committerKenneth Reitz <me@kennethreitz.com>2010-10-04 11:55:26 -0400
commit41a7a5d32991c80899a3a900cbb63ffd4c577126 (patch)
treeac1ba42ec7da6013e2765dcf04cbc153630962ad /setup.py
parentc4edaa2ca856c99f56a5a12ae00ca7f2c432ef10 (diff)
downloadtablib-41a7a5d32991c80899a3a900cbb63ffd4c577126.tar.gz
No cli app at this time.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 1f55202..a297169 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ if sys.argv[-1] == "publish":
setup(
name='tablib',
- version='0.8.2',
+ version='0.8.3',
description='Format agnostic tabular data library (XLS, JSON, YAML, CSV)',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
@@ -35,9 +35,9 @@ setup(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
- entry_points={
- 'console_scripts': [
- 'tabbed = tablib.cli:start',
- ],
- }
+ # entry_points={
+ # 'console_scripts': [
+ # 'tabbed = tablib.cli:start',
+ # ],
+ # }
)