-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "open-pi0"
dynamic = ["version"]
description = "Reproduction of Pi0, a general-purpose robot foundation model developed by Physical Intelligence."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "./LICENSE" }
keywords = ["Robotics", "VLA"]
authors = [
{ name = "Ming Yang", email = "ymviv@qq.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"torch>=2.5.1",
"accelerate>=1.1.1",
"transformers>=4.46.2",
"diffusers>=0.31.0",
"h5py>=3.12.1",
"sentencepiece>=0.2.0",
"wandb>=0.18.7",
"prodigyopt>=1.0",
"bitsandbytes>=0.44.1",
"deepspeed>=0.15.4",
"datasets-3.1.0",
]
[project.urls]
Documentation = "https://github.com/vivym/OpenPi0#readme"
Issues = "https://github.com/vivym/OpenPi0/issues"
Source = "https://github.com/vivym/OpenPi0"
[tool.setuptools.dynamic]
version = {attr = "open_pi0.__version__"}
[tool.pyright]
exclude = ["data", "wandb", "outputs", "lightning_logs"]
typeCheckingMode = "off"