-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.07 KB
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
38
39
40
41
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "rangemp"
version = "0.0.1"
description = "RANGE is a model-agnostic framework that employs an attention-based aggregation-broadcast mechanism to significantly reduce oversquashing effects in message-passing neural networks."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.12"
authors = [
{name = "Jacopo Venturin"},
{name = "Alessandro Caruso"},
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"mlcg",
"aggforce @ git+https://github.com/noegroup/aggforce.git",
"torch>=2.6.0",
"torch-geometric>=2.6.1",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.12",
]
[project.optional-dependencies]
dev = ["pytest"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["rangemp*"]
[project.urls]
Homepage = "https://github.com/ClementiGroup/range-dev"
Issues = "https://github.com/ClementiGroup/range-dev/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]