1 Star 0 Fork 0

珊S / fennlp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 990 Bytes
一键复制 编辑 原始数据 按行查看 历史
kyzhouhzau 提交于 2020-05-28 22:00 . 2020/5/11
import io
import os
import sys
from setuptools import find_packages, setup
# Package meta-data.
NAME = 'nlpgnn'
DESCRIPTION = 'An out-of-the-box NLP toolkit can easily help you solve tasks such as\
Entity Recognition, Text Classification, Relation Extraction and so on.'
URL = 'https://github.com/kyzhouhzau/nlpgnn'
EMAIL = 'zhoukaiyinhzau@gmail.com'
AUTHOR = 'Kaiyin Zhou'
REQUIRES_PYTHON = '>=3.6.0'
VERSION = '0.0.0'
REQUIRED = [
'typeguard',
'gensim',
'tqdm',
'regex',
'scikit-learn',
'sentencepiece',
'networkx'
]
# Where the magic happens:
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
install_requires=REQUIRED,
include_package_data=True,
license='Apache',
classifiers=[
'Programming Language :: Python',
],
)
1
https://gitee.com/gaoshankrystal/fennlp.git
git@gitee.com:gaoshankrystal/fennlp.git
gaoshankrystal
fennlp
fennlp
master

搜索帮助