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', + ], + } )