-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.17 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "MARLite"
version = "0.1.0"
description = "A lightweight multi-agent reinforcement learning framework"
license = "BSD-2-Clause"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pyyaml>=6.0.2",
"torch>=2.8.0",
"torch-geometric>=2.6.1",
"tqdm>=4.67.1",
"absl-py>=2.3.1",
"mpe2>=0.0.1",
"networkx>=3.4.2",
"pettingzoo[butterfly,mpe]>=1.25.0",
"smac-pettingzoo",
"magent2",
]
[project.scripts]
marlite = "main:main"
[project.optional-dependencies]
develop = [
"pytest>=8.3.5",
"pytest-xdist>=3.8.0",
]
analysis = [
"matplotlib>=3.10.3",
"notebook>=7.4.2",
"pandas>=2.3.0",
]
[tool.uv]
index-strategy = "unsafe-best-match"
[tool.uv.sources]
smac-pettingzoo = { git = "https://github.com/CTmH/SMAC-PettingZoo.git" }
magent2 = { git = "https://github.com/CTmH/MAgent2.git" }
dm_env = { git = "https://github.com/CTmH/dm_env.git" }
torch = { index = "pytorch-rocm" }
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
default = true
[[tool.uv.index]]
name = "pytorch-rocm"
#url = "https://download.pytorch.org/whl/rocm6.4"
url = "https://download.pytorch.org/whl/nightly/rocm7.0"
default = false