Skip to content

Commit

Permalink
Update setup.py and setup.cfg for pypi release
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jun 14, 2015
1 parent 161d47b commit b82ab80
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
22 changes: 12 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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(),
)

0 comments on commit b82ab80

Please sign in to comment.