-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
37 lines (32 loc) · 996 Bytes
/
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 = "topognn"
version = "0.1.0"
description = "Topological Graph Neural Networks"
authors = []
[tool.poetry.dependencies]
python = ">=3.7.1,<3.9"
torch = "==1.8.1"
torch-geometric = {version = "==1.6.3", allow-prereleases = true} # Depends on some prerelease packages
pytorch-lightning = "==1.2.10"
wandb = "^0.10.12"
torch_persistent_homology = { path = "repos/torch_persistent_homology", develop = true }
giotto-tda = "^0.4.0"
python-igraph = "^0.8.3"
networkx = "^2.5"
scikit-learn = "^0.24.1"
pandas = "^1.2.1"
dgl = "^0.6.1"
ogb = "^1.3.2"
tadasets = "^0.0.4"
[tool.poetry.dev-dependencies]
ipdb = "^0.13.4"
pytest = "^6.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
install_deps_cpu = "deps:install_deps_cpu"
install_deps_cu101 = "deps:install_deps_cu101"
install_deps_cu102 = "deps:install_deps_cu102"
install_deps_cu110 = "deps:install_deps_cu110"
rebuild_submodule = "deps:rebuild_submodule"