rsl_rl/setup.py

25 lines
666 B
Python
Raw Normal View History

# Copyright 2021 ETH Zurich, NVIDIA CORPORATION
# SPDX-License-Identifier: BSD-3-Clause
2021-10-27 16:18:22 +08:00
from setuptools import find_packages, setup
setup(
name="rsl_rl",
2023-12-12 01:55:06 +08:00
version="2.0.2",
packages=find_packages(),
2023-11-09 19:49:41 +08:00
author="ETH Zurich, NVIDIA CORPORATION",
maintainer="Nikita Rudin, David Hoeller",
maintainer_email="rudinn@ethz.ch",
url="https://github.com/leggedrobotics/rsl_rl",
license="BSD-3",
description="Fast and simple RL algorithms implemented in pytorch",
python_requires=">=3.6",
install_requires=[
"torch>=1.10.0",
"torchvision>=0.5.0",
"numpy>=1.16.4",
"GitPython",
"onnx",
],
)