-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.16 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
36
37
38
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="[email protected]",
packages=["kge"],
install_requires=[
"torch,
"numpy==1.19.*",
"pyyaml",
"pandas",
"argparse",
"path",
# please check correct behaviour when updating ax platform version!!
"ax-platform==0.1.19", "botorch==0.4.0", "gpytorch==1.4.2",
"sqlalchemy<2.0.0",
"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",
"hpbandster",
"ConfigSpace",
"igraph",
],
# 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",],},
)