Files
go2_rl_gym/setup.py
2026-01-10 02:50:58 +08:00

23 lines
602 B
Python

from setuptools import find_packages
from distutils.core import setup
setup(name='go2_rl_gym',
version='0.1.8',
author='Wu Tianyang',
license="MIT",
packages=find_packages(),
author_email='993660140@qq.com',
description='RL environments for Unitree Go2 Robots',
install_requires=[
'isaacgym',
'rsl-rl',
'matplotlib',
'numpy==1.20',
'tensorboard==2.14.0',
'google-auth==2.45.0',
'mujoco==3.2.3',
'pyyaml',
'onnx==1.17.0',
'pygame'
])