keras/setup.py
2016-04-03 20:58:13 -07:00

18 lines
521 B
Python

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