1 Star 0 Fork 0

7分钟/Model_Log

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 923 Bytes
一键复制 编辑 原始数据 按行查看 历史
NLP-LOVE 提交于 2020-06-25 10:48 . Update setup.py
#-*- encoding: UTF-8 -*-
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
VERSION = '1.1.3'
setup(name='model-log',
version=VERSION,
description="test description",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='python,machine-learning,deep-learning,metric,loss',
author='mantch',
author_email='mantchs@163.com',
url='https://github.com/NLP-LOVE/Model_Log',
license='Apache License 2.0',
packages=['model_log'],
include_package_data=True,
zip_safe=True,
install_requires=[
'flask >= 0.11'
],
entry_points={
'console_scripts':[
'model-log = model_log.modellog_web:main'
]
}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/plusyou13/Model_Log.git
git@gitee.com:plusyou13/Model_Log.git
plusyou13
Model_Log
Model_Log
master

搜索帮助