-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
29 lines (26 loc) · 882 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
[tool.poetry]
name = "lightning-geometric"
version = "0.1.0"
description = "TorchScripted Pytorch Geometric Examples with Pytorch Lightning and Hydra"
authors = ["Thomas Chaton <thomas.chaton.ai@gmail.com>"]
[tool.poetry.dependencies]
python = "3.7.8"
torch = "^1.6.0"
hydra-core = "1.0.0"
torch-cluster = "^1.5.7"
torch-sparse = "^0.6.7"
torch-scatter = "^2.0.5"
torch-geometric = { git = "https://github.com/rusty1s/pytorch_geometric.git", branch = "master" }
pytorch-lightning = { git = "https://github.com/PyTorchLightning/pytorch-lightning.git", branch = "master" }
openmesh = "^1.1.4"
torch-spline-conv = "^1.2.0"
ogb = "^1.2.3"
wandb = "^0.10.2"
tqdm = "^4.50.0"
pytest = "^6.1.0"
pytest-xdist = "^2.1.0"
[tool.poetry.dev-dependencies]
black = {version = "^20.8b1", allow-prereleases = true}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"