Explicitly declaring dependency in setup.py make 'pip install mega.py' install everything just fine

This commit is contained in:
gissehel 2013-04-20 13:45:06 +02:00
parent 964157bf41
commit dcbd17a6ed

View file

@ -38,10 +38,11 @@ setup(
author_email='richard@richard.do', author_email='richard@richard.do',
license='Creative Commons Attribution-Noncommercial-Share Alike license', license='Creative Commons Attribution-Noncommercial-Share Alike license',
long_description='https://github.com/richardasaurus/mega.py', long_description='https://github.com/richardasaurus/mega.py',
install_requires=['pycrypto', 'requests'],
classifiers=[ classifiers=[
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python', 'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP' 'Topic :: Internet :: WWW/HTTP'
] ]
) )