Update setup.py and setup.cfg for pypi release

Esse commit está contido em:
fchollet
2015-06-13 17:26:18 -07:00
commit b82ab804da
2 arquivos alterados com 14 adições e 10 exclusões
+2
Ver Arquivo
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
+12 -10
Ver Arquivo
@@ -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(),
)