forked from isaac-sim/IsaacLab-Arena
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (15 loc) · 677 Bytes
/
setup.py
File metadata and controls
18 lines (15 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright (c) 2025, 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"
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_g1*", "isaaclab_arena_gr00t*"]),
python_requires=">=3.10",
zip_safe=False,
)