-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.11 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.11 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
# Copyright (c) 2025-2026, The Isaac Lab Arena Project Developers (https://github.com/isaac-sim/IsaacLab-Arena/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
"""Installation script for the 'isaaclab_arena' python package."""
from setuptools import find_packages, setup
ISAACLAB_ARENA_VERSION_NUMBER = "1.0.0"
RUNTIME_DEPS = [
"typing_extensions",
"onnxruntime",
"vuer[all]",
"lightwheel-sdk",
"pytest",
]
DEV_DEPS = [
"jupyter",
"debugpy",
"tenacity",
]
setup(
name="isaaclab_arena",
version=ISAACLAB_ARENA_VERSION_NUMBER,
description="Isaac Lab - Arena. An Isaac Lab extension for robotic policy evaluation. ",
packages=find_packages(
include=[
"isaaclab_arena*",
"isaaclab_arena_environments*",
"isaaclab_arena_examples*",
"isaaclab_arena_g1*",
"isaaclab_arena_gr00t*",
"isaaclab_arena_openpi*",
]
),
python_requires=">=3.10",
install_requires=RUNTIME_DEPS,
extras_require={
"dev": DEV_DEPS,
},
zip_safe=False,
)