-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (26 loc) · 842 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
This package is deprecated please use the version at
https://github.com/pbloem/kgbench-loader
"""
raise Exception('This package is deprecated please use the version at https://github.com/pbloem/kgbench-loader')
# from setuptools import setup
#
# setup(
# name="kgbench",
# version="0.1",
# description="A set of benchmark datasets for knowledge graph node classification",
# url="https://kgbench.info",
# author="Peter Bloem (Vrije Universiteit), Xander Wilcke (Vrije Universiteit), Lucas van Berkel, Victor de Boer (Vrije Universiteit)",
# author_email="kgbench@peterbloem.nl",
# packages=["kgbench"],
# install_requires=[
# "numpy",
# "torch",
# "torchvision",
# "Pillow",
# "scikit-image",
# "rdflib",
# "hdt"
# ],
# zip_safe=False
# )