-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 909 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
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "mugato/__init__.py"
[project]
name = "mugato"
dynamic = ["version"]
description = "A mini unofficial implementation of DeepMind's GATO paper."
authors = [
{ name = "Eric Ihli", email = "[email protected]" }
]
license = { text = "MIT" }
dependencies = [
"datasets==3.0.2",
"einops==0.8.0",
"IPython==8.22.2",
"ipywidgets==8.1.5",
"matplotlib==3.9.2",
"minari==0.5.1",
"minari[gcs]==0.5.1",
"minari[hdf5]==0.5.1",
"minigrid==2.3.1",
"numpy==2.1.2",
"Pillow==11.0.0",
"requests~=2.32.3",
"timm==1.0.11",
"tqdm==4.66.6",
"tiktoken==0.8.0",
"torch==2.5.1",
"torchvision==0.20.1",
"wandb==0.18.5",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0"
]
[tool.setuptools]
package-dir = {"" = "mugato"}
packages = ["mugato"]