-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 912 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 912 Bytes
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
[project]
name = "centrilearn"
version = "v0.2.0"
description = "CentriLearn: A Reinforcement Learning Framework for Complex Networks Tasks"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "CentriLearn Team"}
]
keywords = ["reinforcement-learning", "graph-neural-networks", "network-dismantling"]
dependencies = [
"torch>=2.7.0",
"torch-geometric>=2.6.0",
"torch-scatter>=2.1.0",
"networkx>=3.4.0",
"numpy>=2.2.5",
"pandas>=2.0.0",
"scipy>=1.13.0",
"pyyaml>=6.0.0",
]
[tool.uv]
prerelease = "allow"
[tool.uv.extra-build-dependencies]
torch-scatter = ["torch"]
[tool.setuptools]
packages = ["centrilearn"]
[project.urls]
Homepage = "https://github.com/He-JiYe/CentriLearn"
Documentation = "https://github.com/He-JiYe/CentriLearn#readme"
Repository = "https://github.com/He-JiYe/CentriLearn.git"
Issues = "https://github.com/He-JiYe/CentriLearn/issues"