5 Star 13 Fork 9

OpenKG/NeuralKG

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 907 Bytes
一键复制 编辑 原始数据 按行查看 历史
yaozhen 提交于 2022-06-11 12:34 . add HAKE and debug KBAT
#!/usr/bin/env python
# coding: utf-8
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='neuralkg',
version='1.0.21',
author='ZJUKG',
author_email='[email protected]',
url='https://github.com/zjukg/NeuralKG',
description='An Open Source Library for Diverse Representation Learning of Knowledge Graphs',
package_dir={"": "src"},
packages=setuptools.find_packages("src"),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'pytorch_lightning==1.5.10',
'PyYAML>=6.0',
'wandb>=0.12.7',
'IPython>=5.0.0'
],
python_requires=">=3.6"
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/openkg/neuralkg.git
[email protected]:openkg/neuralkg.git
openkg
neuralkg
NeuralKG
main

搜索帮助