-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 817 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tmow"
version = "0.1.0"
description = "TMoW: Test-Time Mixture of World Models for Embodied Agents in Dynamic Environments"
readme = "README.md"
requires-python = ">=3.12"
license-files = ["LICENSE"]
authors = []
urls = {}
dependencies = [
"alfworld[full]==0.4.2",
"bitsandbytes==0.45.5",
"datasets==3.0.1",
"ipdb==0.13.13",
"IPython==9.4.0",
"matplotlib==3.10.5",
"opencv-python==4.12.0.88",
"peft==0.15.2",
"rank_bm25==0.2.2",
"scipy==1.15.2",
"sentence_transformers==3.2.1",
"tensorboard==2.19.0",
"torch==2.6.0",
"transformers==4.45.2",
"trl==0.11.3",
]
[project.scripts]
tmow = "tmow.cli.main:main"
[tool.setuptools]
packages = ["tmow"]