-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (64 loc) · 1.93 KB
/
Copy pathsetup.py
File metadata and controls
69 lines (64 loc) · 1.93 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup
__version__ = ""
with open("fedgraph/version.py", "r") as f:
exec(f.read(), globals())
with open("README.md", "r") as f:
README = f.read()
setup(
name="fedgraph",
version=__version__,
packages=["fedgraph"],
author="Yuhang Yao",
author_email="yuhangya@andrew.cmu.edu",
description="Federated Graph Learning",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/FedGraph/fedgraph",
classifiers=[
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=["Graph Neural Networks", "Federated Learning"],
python_requires=">=3.9",
install_requires=[
"torch>=2.0.0",
"torch-scatter>=2.0.9",
"torch-sparse>=0.6.15",
"torch-cluster>=1.6.0",
"torch-spline-conv>=1.2.1",
"torch-geometric>=2.1.0.post1",
"omegaconf>=2.3.0",
"ray[default]>=2.6.3",
"PyYAML>=5.4.0",
"attridict",
"torchmetrics",
"setuptools",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex",
"matplotlib",
"sphinx_gallery",
"tensorboard",
"dtaidistance",
"gdown",
"pandas",
"twine==5.0.0",
"scikit-learn",
"tenseal",
"huggingface_hub",
"ogb",
],
extras_require={
"dev": ["build", "mypy", "pre-commit", "pytest"],
# Optional threshold-HE backend used by FedGCN-v2. Install with
# pip install "fedgraph[openfhe]"
# OpenFHE Python wheels are only published for Linux/manylinux at the
# time of writing; on macOS/Windows you can build from source or use
# the supplied Dockerfile.
"openfhe": ["openfhe==1.2.3.0.24.4"],
},
include_package_data=True,
package_data={
"fedgraph": ["he_context.pkl"],
},
)