1 Star 0 Fork 4

zhangbeihai/fastHan

forked from fastNLP/fastHan 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 748 Bytes
一键复制 编辑 原始数据 按行查看 历史
耿志超 提交于 2020-06-17 12:52 +08:00 . version 1.3
#!/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('requirements.txt', encoding='utf-8') as f:
reqs = f.read()
pkgs = [p for p in find_packages()]
print(pkgs)
setup(
name='fastHan',
version='1.3',
url='https://github.com/fastnlp/fastHan',
description=(
'使用深度学习联合模型,解决中文分词、词性标注、依存分析、命名实体识别任务。'
),
long_description=readme,
long_description_content_type='text/markdown',
author='耿志超',
license='Apache License',
python_requires='>=3.6',
packages=pkgs,
install_requires=reqs.strip().split('\n'),
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhangbeihai1234/fastHan.git
git@gitee.com:zhangbeihai1234/fastHan.git
zhangbeihai1234
fastHan
fastHan
master

搜索帮助