17 lines
477 B
Python
17 lines
477 B
Python
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']
|
|
) |