forked from seeyourmind/TKGElib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1013 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 1013 Bytes
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
from setuptools import setup, find_packages
setup(
name="ECEformer",
version="0.1",
description="Learning Evolutionary Chain of Events for Temporal Knowledge Graph Reasoning",
url="https://github.com/seeyourmind/ECEformer",
author="USTB",
author_email="xs.b12345@ustb.edu",
# packages=["kge"],
packages=find_packages(),
package_data={'': ['*.yaml']},
install_requires=[
"torch==1.12.1",
"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",],},
)