-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 971 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 971 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
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "marl-value-factorisation"
version = "0.1.0"
description = "MAPPO experiments with VDN- and QMIX-style value factorisation"
readme = "README.md"
requires-python = ">=3.10,<3.12"
license = {file = "LICENSE"}
authors = [{name = "Leyan Li"}]
dependencies = [
"cloudpickle>=3.0,<4",
"matplotlib>=3.8,<4",
"numpy>=1.26,<3",
"mpe2>=1,<2",
"pettingzoo>=1.26,<2",
"pyyaml>=6.0,<7",
"sacred>=0.8.5,<0.9",
"seaborn>=0.13,<0.14",
"setuptools>=69,<81",
"torch>=2.2,<3",
]
[project.optional-dependencies]
dev = ["pytest>=8,<9"]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["src"]
testpaths = ["tests"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = {index = "pytorch-cpu"}