-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (37 loc) · 1.02 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
39
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="tf_kge",
python_requires='>3.5.0',
version="0.0.1",
author="Jun Hu",
author_email="[email protected]",
packages=find_packages(
exclude=[
'data',
'demo',
'doc',
'docs'
]
),
install_requires=[
"numpy >= 1.17.4",
"networkx >= 2.1",
"scipy >= 1.1.0",
"scikit-learn >= 0.22",
"tqdm",
"tf_geometric"
],
extras_require={
'tf1-cpu': ["tensorflow >= 1.14.0,<2.0.0"],
'tf1-gpu': ["tensorflow-gpu >= 1.14.0,<2.0.0"],
'tf2-cpu': ["tensorflow >= 2.0.0b1"],
'tf2-gpu': ["tensorflow-gpu >= 2.0.0b1"]
},
description="""
Knowledge Graph Embedding Library for TensorFlow 1.x and 2.x.
""",
license="GNU General Public License v3.0 (See LICENSE)",
# long_description=open("README.rst", "r", encoding="utf-8").read(),
url="https://github.com/CrawlScript/tf_kge"
)