1 Star 12 Fork 2

ZJUNLP / DeepKE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 925 Bytes
一键复制 编辑 原始数据 按行查看 历史
GoooDte 提交于 2023-03-15 13:39 . Update setup.py
from setuptools import setup, find_packages
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read().splitlines()
setup(
name='deepke', # 打包后的包文件名
version='2.1.3', #版本号
keywords=["pip", "RE","NER","AE"], # 关键字
description='DeepKE is a knowledge extraction toolkit for knowledge graph construction supporting low-resource, document-level and multimodal scenarios for entity, relation and attribute extraction.', # 说明
license="MIT", # 许可
url='https://github.com/zjunlp/deepke',
author='ZJUNLP',
author_email='zhangningyu@zju.edu.cn',
include_package_data=True,
platforms="any",
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
)
Python
1
https://gitee.com/ZJU_NLP/DeepKE.git
git@gitee.com:ZJU_NLP/DeepKE.git
ZJU_NLP
DeepKE
DeepKE
main

搜索帮助