-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.45 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ['jaxmarl*']
[tool.setuptools.dynamic]
version = {attr = "jaxmarl.__version__"}
[project]
name = "jaxmarl"
readme = "README.md"
description = "Multi-Agent Reinforcement Learning with JAX"
authors = [
{name = "Foerster Lab for AI Research", email = "arutherford@robots.ox.ac.uk"},
]
dynamic = ["version"]
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"jax",
"jaxlib",
"flax",
"safetensors",
"chex",
"brax==0.10.3",
"mujoco==3.1.3",
"matplotlib",
"pillow",
"scipy<=1.12",
"gymnax",
]
[project.optional-dependencies]
algs = [
"optax",
"distrax",
"flashbax==0.1.0",
"wandb",
"hydra-core>=1.3.2",
"omegaconf>=2.3.0",
"pettingzoo>=1.24.3",
"tqdm>=4.66.0",
]
dev = [
"pytest",
"pygame",
]
[project.urls]
"Homepage" = "https://github.com/FLAIROx/JaxMARL"
"Bug Tracker" = "https://github.com/FLAIROx/JaxMARL/issues"