-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 871 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
[tool.poetry]
name = "Constrained-Neural-Networks"
version = "1.1"
description = "A framework for building constrained neural networks"
authors = ["Tue Boesen <[email protected]>"]
license = "MIT"
readme = "README.md"
[[tool.poetry.source]]
name = "pytorch-geometric"
url = "https://data.pyg.org/whl/torch-2.2.0+cu121.html"
priority = "explicit"
[tool.poetry.dependencies]
python = ">=3.10"
torch = ">=1.5"
matplotlib = ">=3.7.1"
numpy = ">=1.24.2"
e3nn = "^0.5.1"
multibodypendulum = "^0.2.4"
pandas = "^2.2.0"
omegaconf = "^2.3.0"
mlflow = "^2.10.2"
tqdm = "^4.66.2"
hydra-core = "^1.3.2"
torch-geometric = "^2.5.0"
torch-cluster = {version = "^1.6.3+pt21cu121", source = "pytorch-geometric"}
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.2"
pre-commit = ">=3.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"