Added entrance point, setup.py updates.

This commit is contained in:
Kenneth Reitz
2010-09-25 17:27:04 -04:00
parent 22fe18239f
commit 25f846a78a
+7 -7
View File
@@ -24,8 +24,8 @@ setup(
author='Kenneth Reitz',
author_email='me@kennethreitz.com',
url='http://github.com/kennethreitz/tablib',
packages=['tablib', 'tablib.formats'],
install_requires=['xlwt', 'simplejson', 'PyYAML'],
packages=['tablib'],
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',
],
}
)