-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.19 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
[project]
name = "urlab-bridge"
version = "0.1.0-alpha"
description = "ZMQ bridge, ROS 2 rebroadcaster, and policy runner for Unreal Robotics Lab"
readme = "README.md"
requires-python = ">=3.11,<3.13"
license = {text = "Apache-2.0"}
authors = [{name = "Jonathan Embley-Riches", email = "jonathanembleyriches@outlook.com"}]
urls = {Homepage = "https://github.com/URLab-Sim/urlab_bridge", Documentation = "https://github.com/URLab-Sim/UnrealRoboticsLab"}
dependencies = [
"pyzmq>=25.0.0",
"numpy>=1.26.0",
"opencv-python>=4.8.0",
"dearpygui>=1.11.1",
]
[project.optional-dependencies]
policy = [
# Core ML
"torch>=2.0.0",
"onnxruntime>=1.16.0",
"scipy>=1.11.0",
# MuJoCo
"mujoco>=3.2.0",
# RoboJuDo dependencies
"pydantic>=2.0.0",
"python-box>=7.0.0",
"tqdm>=4.65.0",
"pyyaml>=6.0",
"easydict>=1.10",
"msgpack>=1.0.0",
"msgpack-numpy>=0.4.8",
"colorlog>=6.7.0",
"joblib>=1.3.0",
]
[project.scripts]
urlab-policy = "urlab_policy.dashboard:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/urlab_policy"]