keras/setup.py
2016-12-19 15:34:08 -08:00

19 lines
558 B
Python

from setuptools import setup
from setuptools import find_packages
setup(name='Keras',
version='1.2.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.2.0',
license='MIT',
install_requires=['theano', 'pyyaml', 'six'],
extras_require={
'h5py': ['h5py'],
'visualize': ['pydot-ng'],
},
packages=find_packages())