-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (56 loc) · 1.65 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "airdc"
version = "0.7.8"
description = "AIRDC: Collecting Multimodal Data For Your Robots"
authors = [{ name = "OpenGHz", email = "latent-shimmer@qq.com" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
dependencies = [
"pydantic",
"numpy",
"more-itertools",
"typing-extensions",
"setproctitle",
# "hydra-joblib-launcher",
"mcap-data-loader ==0.3.0",
]
urls = { repository = "https://github.com/OpenGHz/AIRBOT-Data-Collection" }
[project.optional-dependencies]
airbot = ["ruamel.yaml"]
cv2 = ["opencv-python"]
rs = ["pyrealsense2"]
web = ["fastapi", "uvicorn"]
v4l2 = ["linuxpy", "PyTurboJPEG"]
udev = ["pyudev"]
# mcap = ["mcap-data-loader ==0.3.0"]
mcap_ros1 = ["mcap-ros1-support"]
image = ["PyTurboJPEG", "av"]
# no hardware support, such as
# opencv, linuxpy, udev, pynput
# but pyav is included
soft = [
"pydantic-settings",
"omegaconf >=2.3.0",
"hydra-zen",
"transitions",
"bidict",
"tqdm",
]
hard = ["pynput >=1.8.1", "linuxpy", "PyTurboJPEG", "pyudev"]
ml = ["torch", "torchvision"]
plt = ["ipykernel", "holoviews"]
cfg = ["pydantic-settings", "omegaconf >=2.3.0", "hydra-zen"]
basic = ["bidict", "tqdm", "flatten-dict"]
all = ["airdc[basic]", "airdc[cfg]", "airdc[soft]", "airdc[hard]", "airdc[cv2]"]
assis = ["transitions", "hydra-zen", "flatten-dict", "tqdm"]
auto-atom = ["auto-atomic-operation[mujoco,gs] ==0.2.3"]
[tool.setuptools.packages.find]
where = ["."]
include = ["airdc*", "airbot_ie*"]
[project.scripts]
airdc = "airdc.main:main"
airdc-desktop = "airdc.main:main_desktop"