-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (79 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (79 loc) · 1.68 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "azure-nvidia-robotics-reference-architecture"
version = "0.1.0"
description = "Azure NVIDIA Robotics Reference Architecture for Isaac Lab training"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Dev tools
"black>=25.9.0",
"ipykernel>=7.1.0",
"ipython>=9.7.0",
"ipywidgets>=8.1.8",
"pytest>=8.4.2",
"tqdm>=4.67.1",
# Core Isaac Lab dependencies
"numpy<3",
"onnx>=1.18.0",
"prettytable==3.17.0",
"toml",
"hidapi==0.15.0",
"gymnasium==1.2.3",
"trimesh",
"pyglet<3",
"transformers",
"einops",
"warp-lang",
"pillow==12.1.0",
"starlette==0.52.1",
# Testing
"pytest-mock",
"junitparser",
"flatdict==4.0.1",
"flaky",
# RL Framework dependencies
"protobuf>=4.25.8,!=5.26.0",
"hydra-core",
"h5py",
"tensorboard",
"moviepy",
"packaging<27",
"skrl>=1.4.3",
# Isaac Lab Tasks
"scikit-learn",
"numba",
# Azure ML Integration
"azure-identity>=1.13.0",
"azure-ai-ml",
"azureml-mlflow",
"mlflow",
"psutil>=5.9.0",
"pynvml>=11.5.0",
"azure-core==1.38.0",
"azure-storage-blob==12.28.0",
"pyperclip==1.11.0",
"rsl-rl-lib==4.0.0",
]
[project.optional-dependencies]
training = [
"azure-identity>=1.13.0",
"azure-ai-ml",
"azureml-mlflow",
"mlflow",
"psutil>=5.9.0",
"pynvml>=11.5.0",
"rsl-rl-lib==4.0.0",
"skrl>=1.4.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/training"]
[dependency-groups]
dev = [
"ipykernel>=7.1.0",
"ipywidgets>=8.1.8",
"black>=25.9.0",
"pytest>=8.4.2",
]