forked from uma-pi1/kge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.03 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
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=[
"numpy==1.19.*",
"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",
"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.*",
],
# 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",],},
)