-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
executable file
·59 lines (57 loc) · 1.29 KB
/
pyproject.toml
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
[build-system]
requires=[
"setuptools",
"wheel",
]
build-backend="setuptools.build_meta"
[project]
name="pyg_spectral"
version="1.0.0"
authors=[
{name="Ningyi Liao", email="liao0090@e.ntu.edu.sg"},
]
description="Spectral GNN benchmark based on PyG"
readme="README.md"
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Environment :: GPU :: NVIDIA CUDA :: 12",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords=[
"pytorch",
"graph-neural-networks",
"spectral-gnn",
]
requires-python=">=3.10"
dependencies=[
"torch_geometric>=2.5.3",
"pandas>=2.0",
"numpy>=1.23,<2.0",
]
[project.optional-dependencies]
benchmark=[
"torchmetrics>=1.0",
"scikit-learn>=1.3.0",
"matplotlib>=3.0",
"optuna>=3.4",
"ogb>=1.3.6",
]
cpp=[
"cython>=0.2.15",
"eigency>=1.77",
]
docs=[
"sphinx>=7,<7.4",
"sphinx_rtd_theme",
"nbsphinx",
"myst_parser",
"sphinx-copybutton",
"sphinx-autodoc-typehints",
]