Remove h5py requirement and made it optional.

This commit is contained in:
gw0 [http://gw.tnode.com/] 2015-09-08 17:56:44 +02:00
parent 36ef1ca7b4
commit a582b184c9

@ -10,5 +10,8 @@ setup(name='Keras',
url='https://github.com/fchollet/keras',
download_url='https://github.com/fchollet/keras/tarball/0.1.2',
license='MIT',
install_requires=['theano', 'pyyaml', 'h5py'],
install_requires=['theano', 'pyyaml'],
extras_require = {
'h5py': ['h5py'],
},
packages=find_packages())