walk-these-ways-go2/go1_gym_deploy/setup.py

13 lines
324 B
Python
Raw Normal View History

2024-01-28 17:11:38 +08:00
from setuptools import find_packages
from distutils.core import setup
setup(
name='go1_gym',
version='1.0.0',
author='Gabriel Margolis',
license="BSD-3-Clause",
packages=find_packages(),
author_email='gmargo@mit.edu',
description='Toolkit for deployment of sim-to-real RL on the Unitree Go1.'
)