Added entrance point, setup.py updates.

This commit is contained in:
Kenneth Reitz
2010-09-25 17:27:04 -04:00
parent 8feb6e8ddf
commit 8c402da729
+6 -6
View File
@@ -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',
],
}
)