Update setup.py, get rid of unused dependency

This commit is contained in:
Eldon 2014-01-23 16:18:13 -05:00
parent 05b6e7c827
commit 4852fbf29f
2 changed files with 4 additions and 4 deletions

View file

@ -9,13 +9,13 @@ setuptools.setup(name='umbra',
long_description=open('README.md').read(),
license='GPL',
packages=['umbra'],
install_requires=['kombu', 'websocket-client-py3','psutil','argparse'],
install_requires=['kombu', 'websocket-client-py3','argparse'],
scripts=['bin/umbra'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha Development Status',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: System :: Archiving',
])