-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·50 lines (43 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
executable file
·50 lines (43 loc) · 1.28 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "INT-ACT"
version = "0.0.1"
readme = "README.md"
description = "Official repo of From Intention to Execution: Probing the Generalization Boundaries of Vision-Language-Action Models"
authors = [
{name = "Irving Fang", email = "irving.fang@nyu.edu"},
{name = "Juexiao Zhang", email = "juexiao.zhang@nyu.edu"}
]
requires-python = "==3.10.12"
dependencies = [
"lerobot",
"transformers==4.48.3",
"opencv-python>=4.11.0",
"pytest",
"policy-server-client",
"numpy==1.26.4", # it's important to use pre-2.0 numpy. 2.0 has breaking changes and lots of donwstream packages haven't updated yet
"torch==2.6.0",
"bitsandbytes",
"einops",
"draccus",
"protobuf==3.20.3",
"tensorflow==2.15.0",
"tensorflow_datasets==4.9.2",
"tensorflow_graphics",
"evaluate",
]
[tool.ruff]
line-length = 170
target-version = "py310"
[tool.ruff.lint]
select = ["A", "B", "E", "F", "I", "RUF", "W"]
ignore = ["F722"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]
[tool.uv.sources]
policy-server-client = { workspace = true }
lerobot = { path = "./third_party/lerobot", editable = true }
[tool.uv.workspace]
members = ["packages/policy-server-client"]