2023-12-13 01:32:21 +08:00
|
|
|
from setuptools import setup, find_packages
|
2023-11-02 07:43:02 +08:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="rsl_rl",
|
2023-12-13 01:32:21 +08:00
|
|
|
version="1.0.2",
|
2023-11-02 07:43:02 +08:00
|
|
|
packages=find_packages(),
|
|
|
|
license="BSD-3",
|
|
|
|
description="Fast and simple RL algorithms implemented in pytorch",
|
|
|
|
python_requires=">=3.6",
|
|
|
|
install_requires=[
|
2023-12-13 01:32:21 +08:00
|
|
|
"GitPython",
|
|
|
|
"gym[all]>=0.26.0",
|
|
|
|
"numpy>=1.24.4",
|
|
|
|
"onnx>=1.14.0",
|
2024-03-25 03:12:03 +08:00
|
|
|
"tensorboard>=2.10.0",
|
2023-11-02 07:43:02 +08:00
|
|
|
"torch>=1.10.0",
|
|
|
|
"torchvision>=0.5.0",
|
2023-12-13 01:32:21 +08:00
|
|
|
"wandb>=0.15.4",
|
2023-11-02 07:43:02 +08:00
|
|
|
],
|
|
|
|
)
|