remove test_requires, as setuptools doesn't seem to support it

"mock" won't get installed in a virtualenv because of this
This commit is contained in:
John Evans 2015-01-10 10:06:25 -05:00
commit 6a8b89ae1c

View file

@ -21,12 +21,10 @@ kwargs = {'name': 'Glymur',
'test_suite': 'glymur.test'}
install_requires = ['numpy>=1.7.0', 'lxml>=3.0.0']
test_requires = []
if sys.hexversion < 0x03030000:
install_requires.append('contextlib2>=0.4')
test_requires.append('mock>=1.0.1')
install_requires.append('mock>=1.0.1')
kwargs['install_requires'] = install_requires
kwargs['test_requires'] = test_requires
clssfrs = ["Programming Language :: Python",
"Programming Language :: Python :: 2.7",