keras/setup.py
2016-01-03 09:41:04 -08:00

18 lines
531 B
Python

from setuptools import setup
from setuptools import find_packages
setup(name='Keras',
version='0.3.1',
description='Theano-based Deep Learning library',
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
url='https://github.com/fchollet/keras',
download_url='https://github.com/fchollet/keras/tarball/0.3.1',
license='MIT',
install_requires=['theano', 'pyyaml', 'six'],
extras_require={
'h5py': ['h5py'],
},
packages=find_packages())