forked from maenzhier/GRecX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.18 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
40
41
42
43
import setuptools
import io
from setuptools import setup, find_packages
setup(
name="grecx",
python_requires='>3.5.0',
version="0.0.4.9",
author="Desheng Cai",
author_email="[email protected]",
packages=find_packages(
exclude=[
'benchmarks',
'data',
'demo',
'dist',
'doc',
'docs',
'logs',
'models',
'test'
]
),
install_requires=[
"tf_geometric >= 0.0.77",
"numpy >= 1.17.4",
# "tensorflow == 2.4.1",
"scikit-learn >= 0.22",
"tqdm",
# "Sphinx == 3.5.4",
"faiss-cpu"
],
extras_require={
},
package_data={'grecx': ["metrics/libranking.so", "metrics/libranking.dll"]},
description="An Efficient and Unified Benchmark for GNN-based Recommendation.",
license="GNU General Public License v3.0 (See LICENSE)",
long_description=io.open("README.rst", mode="r", encoding="utf-8").read(),
# long_description="An Efficient and Unified Benchmark for GNN-based Recommendation.",
long_description_content_type='text/x-rst',
url="https://github.com/maenzhier/GRecX"
)