Prepare 1.0.2 PyPI release

This commit is contained in:
Francois Chollet 2016-04-29 10:39:52 -07:00
parent ad3107073b
commit 5467107fc9
2 changed files with 3 additions and 3 deletions

@ -1,5 +1,5 @@
from __future__ import absolute_import
__version__ = '1.0.1'
__version__ = '1.0.2'
from . import backend
from . import datasets
from . import engine

@ -3,12 +3,12 @@ from setuptools import find_packages
setup(name='Keras',
version='1.0.1',
version='1.0.2',
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.1',
download_url='https://github.com/fchollet/keras/tarball/1.0.2',
license='MIT',
install_requires=['theano', 'pyyaml', 'six'],
extras_require={