1 Star 0 Fork 0

junhua0718/keras

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
Francois Chollet 提交于 2017-08-25 12:01 . Prepare 2.0.8 release.
from setuptools import setup
from setuptools import find_packages
setup(name='Keras',
version='2.0.8',
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/2.0.8',
license='MIT',
install_requires=['numpy>=1.9.1',
'scipy>=0.14',
'six>=1.9.0',
'pyyaml'],
extras_require={
'h5py': ['h5py'],
'visualize': ['pydot>=1.2.0'],
'tests': ['pytest',
'pytest-pep8',
'pytest-xdist',
'pytest-cov'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/junhua0718/keras.git
git@gitee.com:junhua0718/keras.git
junhua0718
keras
keras
master

搜索帮助