-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.97 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "robodm"
version = "0.1.0"
description = "An Efficient and Scalable Data Collection and Management Framework For Robotics Learning"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Kaiyuan Chen", email = "kych@berkeley.edu"},
]
keywords = ["robotics", "data management", "machine learning", "trajectories"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.21.0",
"h5py>=3.7.0",
"opencv-python>=4.5.0",
"tqdm>=4.64.0",
"psutil>=5.9.0",
"ray[data]>=2.8.0",
"av>=14.0.0",
"pandas>=2.0.0",
"pyarrow>=10.0.0",
]
[project.optional-dependencies]
hf = ["datasets>=2.14.0", "huggingface-hub>=0.16.0"]
rtx = ["tensorflow>=2.13.0", "tensorflow-datasets>=4.9.0"]
aws = ["boto3>=1.26.0", "s3fs>=2023.6.0"]
torch = ["torch>=1.13.0", "torchvision>=0.14.0"]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.0",
"pytest-benchmark>=4.0.0",
]
lerobot = ["lerobot>=0.1.0"]
all = ["robodm[hf,rtx,aws,torch,lerobot]"]
[project.urls]
homepage = "https://github.com/BerkeleyAutomation/robodm/"
repository = "https://github.com/BerkeleyAutomation/robodm/"
documentation = "https://github.com/BerkeleyAutomation/robodm/"
"Bug Tracker" = "https://github.com/BerkeleyAutomation/robodm/issues"
[tool.setuptools.packages.find]
include = ["robodm*"]
[tool.setuptools.package-data]
robodm = ["py.typed"]