forked from AgibotTech/genie_sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (54 loc) · 1.54 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geniesim_teleop"
dynamic = ["version"]
description = "Genie Sim — teleoperation distribution (VR / Pico teleop bridge, device drivers, data recording)."
requires-python = ">=3.10,<3.13"
license = {text = "MPL-2.0"}
authors = [{ name = "Genie Sim Team" }]
keywords = ["agibot", "genie", "sim", "teleop", "vr"]
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
# Full runtime dependency set (installed into the image's python).
# `rosbags.image` is an import path within the `rosbags` distribution,
# not a separate package — `rosbags` covers it.
dependencies = [
"geniesim_cli",
"geniesim_ros",
"aiofiles",
"colorama",
"h5py",
"numpy<2.0",
"open3d",
"opencv-python",
"pynput",
"pytz",
"pyyaml",
"rosbags",
"rosbags-image",
"scipy",
]
[project.urls]
Homepage = "https://github.com/AgibotTech/genie_sim"
[project.scripts]
geniesim-teleop = "geniesim_teleop.teleop:main"
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.package-data]
# The `app/` tree is the prebuilt motion-control runtime (binaries, robot
# cfg, vendored site-packages) shipped verbatim with the package.
"geniesim_teleop" = [
"LICENSE",
"config/*.json",
"app/**/*",
]