forked from Hellod035/LeggedLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 673 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 673 Bytes
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
# Copyright (c) 2022-2025, The Isaac Lab Project Developers.
# All rights reserved.
# Original code is licensed under BSD-3-Clause.
#
# Copyright (c) 2025-2026, The Legged Lab Project Developers.
# All rights reserved.
# Modifications are licensed under BSD-3-Clause.
#
# This file contains code derived from Isaac Lab Project (BSD-3-Clause license)
# with modifications by Legged Lab Project (BSD-3-Clause license).
from distutils.core import setup
from setuptools import find_packages
setup(
name="LeggedLab",
packages=find_packages(),
version="1.0.0",
install_requires=[
# 'isaacsim',
"IsaacLab",
"rsl-rl-lib>=2.3.0",
],
)