Go2Py/setup.py

19 lines
439 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',
2024-05-21 07:01:56 +08:00
author='Rooholla Khorrambakht, Bolun Dai',
2024-03-11 06:27:42 +08:00
license="BSD-3-Clause",
packages=find_packages(),
2024-05-21 07:01:56 +08:00
author_email='rk4342@nyu.edu, bd1555@nyu.edu',
description='A Python interface and simulation environemtn for the Unitree Go2 robot.',
2024-03-11 06:27:42 +08:00
install_requires=[
2024-05-21 06:45:59 +08:00
]
)