Updated setup.py and requirements

Updated setup.py to have correct test-requirements.
Updated requirements and test-requirements to contain
the proper packages.

Change-Id: Ib3ec3abaf2cc0eb27e0ff3ad4574207eee088611
This commit is contained in:
Anthony Lee 2015-01-06 08:21:49 -08:00
parent b71801ca0a
commit 48996b77c2
4 changed files with 9 additions and 6 deletions

View File

@ -33,3 +33,7 @@ Changes in Version 1.0.3
* Fixed various typos in the documentation. * Fixed various typos in the documentation.
* Fix duplicate debug log message issue that can occur when multiple client * Fix duplicate debug log message issue that can occur when multiple client
objects are created. objects are created.
* Updated setup.py package requirements to be consistent with the ones
defined in requirements.txt.
* Updated setup.py package test-requirements to be consistent with the ones
defined in test-requirements.txt.

View File

@ -1,3 +1 @@
eventlet httplib2>=0.6.0
paramiko>=1.13.0
Werkzeug

View File

@ -17,7 +17,7 @@ setup(
keywords=["hp", "lefthand", "storevirtual", "rest"], keywords=["hp", "lefthand", "storevirtual", "rest"],
requires=['httplib2(>=0.6.0)'], requires=['httplib2(>=0.6.0)'],
install_requires=['httplib2 >= 0.6.0'], install_requires=['httplib2 >= 0.6.0'],
tests_require=["nose", "werkzeug", "nose-testconfig"], tests_require=["nose", "nose-testconfig", "flask", "Werkzeug", "flake8"],
license="Apache License, Version 2.0", license="Apache License, Version 2.0",
packages=find_packages(), packages=find_packages(),
provides=['hplefthandclient'], provides=['hplefthandclient'],
@ -32,6 +32,5 @@ setup(
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0', 'Programming Language :: Python :: 3.0',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
] ]
) )

View File

@ -1,4 +1,6 @@
nose nose
nose-testconfig nose-testconfig
flake8
flask flask
Werkzeug
flake8 # Used by tox