Go2Py_SIM/setup.py

18 lines
412 B
Python
Raw Normal View History

2024-03-11 06:27:42 +08:00
# from setuptools import setup
2024-02-09 02:20:48 +08:00
2024-03-11 06:27:42 +08:00
# setup()
from setuptools import find_packages
from distutils.core import setup
setup(
name='Go2Py',
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.',
install_requires=[
]
)