3 Star 10 Fork 2

fastNLP / fitlog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 791 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
readme = f.read()
with open('LICENSE', encoding='utf-8') as f:
license = f.read()
with open('requirements.txt', encoding='utf-8') as f:
reqs = f.read()
setup(
name='fitlog',
version='0.9.13',
description='fitlog: Log tool for Deep Learning, developed by Fudan FastNLP Team',
long_description=readme,
long_description_content_type='text/markdown',
license='Apache license',
python_requires='>=3.6',
include_package_data=True,
packages=find_packages(),
install_requires=reqs.strip().split('\n'),
entry_points={
'console_scripts':[
'fitlog = fitlog.__main__:main_cmd'
]
}
)
Python
1
https://gitee.com/fastnlp/fitlog.git
git@gitee.com:fastnlp/fitlog.git
fastnlp
fitlog
fitlog
master

搜索帮助