Update setup.py

This commit is contained in:
fchollet 2015-06-13 17:54:33 -07:00
parent fabfdb868e
commit ce20955379

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