-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (34 loc) · 1.45 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
[tool.poetry]
name = "diffpool"
version = "0.1.0"
description = "Diffpool implementation for GDLMA SoSe22 @ TUM"
authors = ["Daniel Stoll"]
[tool.poetry.dependencies]
python = "^3.9, <3.10"
dgl = [
{url = "https://data.dgl.ai/wheels/dgl-0.8.1-cp39-cp39-manylinux1_x86_64.whl", platform = "linux"},
{url = "https://data.dgl.ai/wheels/dgl-0.8.1-cp39-cp39-win_amd64.whl", platform = "win32"}
]
torch-scatter = [
{url = "https://data.pyg.org/whl/torch-1.11.0%2Bcpu/torch_scatter-2.0.9-cp39-cp39-linux_x86_64.whl", platform = "linux"},
{url = "https://data.pyg.org/whl/torch-1.11.0%2Bcpu/torch_scatter-2.0.9-cp39-cp39-win_amd64.whl", platform = "win32"}
]
torch-sparse = [
{url = "https://data.pyg.org/whl/torch-1.11.0%2Bcpu/torch_sparse-0.6.13-cp39-cp39-linux_x86_64.whl", platform = "linux"},
{url = "https://data.pyg.org/whl/torch-1.11.0%2Bcpu/torch_sparse-0.6.13-cp39-cp39-win_amd64.whl", platform = "win32"}
]
torch-spline-conv = [
{url = "https://data.pyg.org/whl/torch-1.11.0%2Bcpu/torch_spline_conv-1.2.1-cp39-cp39-linux_x86_64.whl", platform = "linux"},
{url = "https://data.pyg.org/whl/torch-1.11.0%2Bcpu/torch_spline_conv-1.2.1-cp39-cp39-win_amd64.whl", platform = "win32"}
]
scipy = "^1.8.0"
networkx = "^2.8"
torch = "^1.11.0"
torch-geometric = "^2.0.4"
jupyterlab = "^3.3.4"
matplotlib = "^3.5.1"
ipywidgets = "^7.7.0"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"