From b82ab804daf24d6091c449148a938083425155d3 Mon Sep 17 00:00:00 2001 From: fchollet Date: Sat, 13 Jun 2015 17:26:18 -0700 Subject: [PATCH] Update setup.py and setup.cfg for pypi release --- setup.cfg | 2 ++ setup.py | 22 ++++++++++++---------- 2 files changed, 14 insertions(+), 10 deletions(-) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000000..224a77957f5d --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index 5bc6f7415b8b..f4f72fd7f0c0 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,15 @@ 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'], - packages=find_packages(), -) +setup(name = 'Keras', + version = '0.1.0', + description = 'Theano-based Deep Learning library', + long_description = open('README.md').read(), + 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.0', + license = 'MIT', + install_requires = ['theano'], + packages = find_packages(), +) \ No newline at end of file