From 8c402da729598979322f13cab9fb4dd63a1000a5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 25 Sep 2010 17:27:04 -0400 Subject: [PATCH] Added entrance point, setup.py updates. --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 0c95cb4..8b5e5a9 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( author_email='me@kennethreitz.com', url='http://github.com/kennethreitz/tablib', packages=['tablib'], - install_requires=['xlwt', 'simplejson', 'PyYAML'], + install_requires=['xlwt', 'simplejson', 'PyYAML', 'argue'], license='MIT', classifiers=( 'Development Status :: 4 - Beta', @@ -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', + ], + } )