keras/setup.py
2015-04-26 22:19:43 -07:00

14 lines
385 B
Python

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