-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 871 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 871 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
from setuptools import setup
# Since CUDA 10.0 includes a bug that affects PPRGo we strongly recommend using e.g. 10.1,
# which can be installed using environment.yaml (e.g. via `conda env create -f environment.yaml`).
install_requires = [
"numpy",
"scipy>=1.3",
"numba>=0.49",
"tensorflow-gpu<2.0",
"scikit-learn",
"sacred",
"seml"
]
setup(
name='pprgo',
version='1.0',
description='PPRGo model, from "Scaling Graph Neural Networks with Approximate PageRank"',
author='Aleksandar Bojchevski, Johannes Gasteiger, Bryan Perozzi, Amol Kapoor, Martin Blais, Benedek Rózemberczki, Michal Lukasik, Stephan Günnemann',
author_email='a.bojchevski@in.tum.de, j.gasteiger@in.tum.de',
packages=['pprgo'],
install_requires=install_requires,
zip_safe=False
)