-
-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (78 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
85 lines (78 loc) · 2.1 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=78.0"]
build-backend = "setuptools.build_meta"
[project]
name = "go1"
description = "AgiBot World Colosseo: A Large-scale Manipulation Platform for Scalable and Intelligent Embodied Systems"
version = "1.0.0"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"accelerate",
"bitsandbytes",
"datasets==3.6.0",
"decord",
"deepspeed==0.15.4",
"draccus",
"einops",
"einops-exts",
"fastapi",
"huggingface_hub",
"imageio",
"json_numpy",
"lerobot @ git+https://github.com/huggingface/lerobot.git@2b71789e15c35418b1ccecbceb81f4a598bfd883",
"matplotlib",
"numpy<2",
"opencv-python",
"peft",
"pyyaml",
"scikit-learn",
"scipy",
"sentencepiece",
"tensorboard",
"termcolor",
"timm",
"tokenizers==0.20.3",
"torch==2.6.0",
"torchvision==0.21.0",
"tqdm",
"transformers==4.46.3",
"tyro",
"uvicorn",
"wandb",
"yacs"
]
[project.optional-dependencies]
libero_data = [
"tensorflow",
"tensorflow-datasets"
]
[project.urls]
Homepage = "https://agibot-world.com/"
Repository = "https://github.com/OpenDriveLab/Agibot-World"
Issues = "https://github.com/OpenDriveLab/AgiBot-World/issues"
[tool.setuptools.packages.find]
exclude = ["data*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "shell*", "*experiments*"]
[tool.wheel]
exclude = ["data*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "shell*", "*experiments*"]
[tool.black]
line-length = 120
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 120
py_version = 310
order_by_type = true
combine_as_imports = true