-
Notifications
You must be signed in to change notification settings - Fork 128
/
setup.py
35 lines (34 loc) · 1.11 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=[
"numpy>=1.19.0",
"torch>=1.7.1",
"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 version restricted until ax supports sqlachemy 2
# see https://github.com/uma-pi1/kge/pull/269
"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.0",
"hpbandster",
"ConfigSpace",
"pytest-shutil",
"igraph",
],
python_requires=">=3.7",
zip_safe=False,
entry_points={"console_scripts": ["kge = kge.cli:main",],},
)