keras/setup.py

15 lines
472 B
Python
Raw Normal View History

from setuptools import setup
from setuptools import find_packages
2015-03-29 23:06:43 +00:00
2015-07-22 13:47:07 +00:00
2015-07-22 01:31:49 +00:00
setup(name='Keras',
version='0.1.2',
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.1.2',
license='MIT',
2015-07-22 13:47:07 +00:00
install_requires=['theano', 'pyyaml', 'h5py'],
2015-07-22 01:31:49 +00:00
packages=find_packages())