parkour/legged_gym/setup.py

17 lines
477 B
Python
Raw Normal View History

2023-09-10 09:44:56 +08:00
from setuptools import find_packages
from distutils.core import setup
setup(
name='legged_gym',
version='1.0.2',
author='Ziwen Zhuang, Nicolas Rudin',
license="BSD-3-Clause",
packages=find_packages(),
author_email='',
description='Isaac Gym environments for Legged Robots',
install_requires=['isaacgym',
'rsl-rl',
'matplotlib',
'tensorboardX',
'debugpy']
)