-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (33 loc) · 1.13 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 = "neural_k_forms"
description = "Simplicial Representation Learning with Neural $k$-forms"
version = "0.1.0"
authors = [
"Kelly Maggs <[email protected]>",
"Celia Hacker <[email protected]>",
"Bastian Rieck <[email protected]>"
]
[tool.poetry.dependencies]
python = ">=3.9,<=3.11"
black = "^23.3.0"
gudhi = "^3.8.0"
scipy = "^1.10.1"
matplotlib = "^3.7.1"
wandb = "^0.15.3"
pandas = "^2.0.3"
tqdm = "^4.66.1"
ripser = "^0.6.7"
[tool.poetry.group.dev.dependencies]
notebook = "^6.5.4"
poethepoet = "^0.25.0"
[tool.black]
line-length = 79
[tool.poe.tasks]
torch-cuda-118 = "python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118"
torch-cuda-121 = "python -m pip install torch torchvision torchaudio"
torch-cpu = "python -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu"
pyg-cpu = """
pip install torch_geometric
pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.2.0+cpu.html
"""
lightning = "python -m pip install lightning"