forked from facebookresearch/minimax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (35 loc) · 819 Bytes
/
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
[project]
name = "minimax-lib"
version = "0.2.0"
authors = [
{name="Minqi Jiang"},
{email="[email protected]"},
]
description = "Efficient baselines for autocurricula in JAX"
readme = "README.md"
license = {text = "Apache 2.0"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"numpy>=1.25,<1.26",
"pandas==1.5.3",
"jax>=0.4.31",
"jaxlib>=0.4.31",
"flax>=0.7.4",
"optax>=0.1.7",
"tensorflow_probability==0.23.0",
"chex>=0.1.83",
"wandb>=0.13",
"ipython>=7.34.0",
"GitPython>=3.1.29",
"tqdm>=4.66.1"
]
[tool.hatchling.scripts]
train = "minimax.train:main"
evaluate = "minimax.evaluate:main"
make_cmd = "minimax.config.make_cmd:main"
[tool.setuptools.package-data]
"minimax.config.configs" = ["**"]