加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
llody_55 提交于 2021-05-25 17:37 . init
from setuptools import setup
from setuptools import find_packages
import os
if os.environ.get('USE_TF_KERAS', None) == '1':
name = 'tf_keras_contrib'
install_requires = []
else:
name = 'keras_contrib'
install_requires = ['keras']
setup(name=name,
version='2.0.8',
description='Keras Deep Learning for Python, Community Contributions',
author='Fariz Rahman',
author_email='farizrahman4u@gmail.com',
url='https://github.com/farizrahman4u/keras-contrib',
license='MIT',
install_requires=install_requires,
extras_require={
'h5py': ['h5py'],
'visualize': ['pydot>=1.2.0'],
'tests': ['pytest',
'pytest-pep8',
'pytest-xdist',
'pytest-cov'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'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 助手
尝试更多
代码解读
代码找茬
代码优化