Update setup.py and setup.cfg for pypi release
Esse commit está contido em:
@@ -0,0 +1,2 @@
|
|||||||
|
[metadata]
|
||||||
|
description-file = README.md
|
||||||
+12
-10
@@ -1,13 +1,15 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
|
|
||||||
setup(name='Keras',
|
setup(name = 'Keras',
|
||||||
version='0.0.1',
|
version = '0.1.0',
|
||||||
description='Theano-based Deep Learning',
|
description = 'Theano-based Deep Learning library',
|
||||||
author='Francois Chollet',
|
long_description = open('README.md').read(),
|
||||||
author_email='francois.chollet@gmail.com',
|
author = 'Francois Chollet',
|
||||||
url='https://github.com/fchollet/keras',
|
author_email = 'francois.chollet@gmail.com',
|
||||||
license='MIT',
|
url = 'https://github.com/fchollet/keras',
|
||||||
install_requires=['theano'],
|
download_url = 'https://github.com/fchollet/keras/tarball/0.1.0',
|
||||||
packages=find_packages(),
|
license = 'MIT',
|
||||||
)
|
install_requires = ['theano'],
|
||||||
|
packages = find_packages(),
|
||||||
|
)
|
||||||
Referência em uma Nova Issue
Bloquear um usuário