2024-07-17 17:20:50 +08:00
|
|
|
from setuptools import find_packages
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='unitree_rl_gym',
|
|
|
|
version='1.0.0',
|
|
|
|
author='Unitree Robotics',
|
|
|
|
license="BSD-3-Clause",
|
|
|
|
packages=find_packages(),
|
|
|
|
author_email='support@unitree.com',
|
|
|
|
description='Template RL environments for Unitree Robots',
|
2025-02-04 21:00:29 +08:00
|
|
|
install_requires=['rsl-rl', 'matplotlib','tensorboard', 'pyyaml'])
|