-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
31 lines (30 loc) · 923 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
30
31
from setuptools import setup
setup(
name="HittER",
version="0.1",
description="Hierarchical Transformers for Knowledge Graph Embeddings",
url="https://github.com/microsoft/HittER",
author="Microsoft Corporation",
author_email="opencode@microsoft.com",
packages=["kge"],
install_requires=[
"torch==1.4.0",
"pyyaml",
"pandas",
"argparse",
"path",
"sqlalchemy",
"torchviz",
"dataclasses",
# LibKGE uses numba typed-dicts which is part of the experimental numba API
# in version 0.48
# see http://numba.pydata.org/numba-doc/0.48.0/reference/pysupported.html
"numba==0.48.0",
"pytorch-pretrained-bert==0.6.0",
"networkx==2.4",
"regex==2020.5.14",
"pytorch_lightning==1.3.1"
],
zip_safe=False,
entry_points={"console_scripts": ["kge = kge.cli:main",],},
)