2 Star 19 Fork 3

fastNLP / fastHan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 748 Bytes
一键复制 编辑 原始数据 按行查看 历史
耿志超 提交于 2020-06-17 12:52 . 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'),
)
Python
1
https://gitee.com/fastnlp/fastHan.git
git@gitee.com:fastnlp/fastHan.git
fastnlp
fastHan
fastHan
master

搜索帮助