-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (34 loc) · 1.1 KB
/
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
30
31
32
33
34
35
from setuptools import setup
setup(
name="libkge",
version="0.1",
description="A knowledge graph embedding library",
url="https://github.com/uma-pi1/kge",
author="Universität Mannheim",
author_email="rgemulla@uni-mannheim.de",
packages=["kge"],
install_requires=[
"torch==1.7.1",
"pyyaml",
"pandas",
"argparse",
"path",
# please check correct behaviour when updating ax platform version!!
"ax-platform==0.1.19",
"sqlalchemy",
"torchviz",
# LibKGE uses numba typed-dicts which is part of the experimental numba API
# see http://numba.pydata.org/numba-doc/0.50.1/reference/pysupported.html
"numba==0.50.*",
"psutil",
"py3nvml",
"tqdm",
"mock",
"dgl==0.4.3post2", # only used for graph-cut partitioning
],
# Ax 0.1.10 requires python 3.7. Numba does not yet support for Python 3.9:
# https://github.com/numba/numba/issues/6345
python_requires=">=3.7,<3.9",
zip_safe=False,
entry_points={"console_scripts": ["kge = kge.cli:main",],},
)