2023-09-10 09:44:56 +08:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(name='rsl_rl',
|
|
|
|
version='1.0.2',
|
|
|
|
author='Nikita Rudin',
|
|
|
|
author_email='rudinn@ethz.ch',
|
|
|
|
license="BSD-3-Clause",
|
|
|
|
packages=find_packages(),
|
|
|
|
description='Fast and simple RL algorithms implemented in pytorch',
|
|
|
|
python_requires='>=3.6',
|
|
|
|
install_requires=[
|
|
|
|
"torch>=1.4.0",
|
|
|
|
"torchvision>=0.5.0",
|
|
|
|
"numpy>=1.16.4"
|
2024-10-10 22:54:35 +08:00
|
|
|
"tensorboardX",
|
|
|
|
"tensorboard",
|
|
|
|
"tabulate",
|
2023-09-10 09:44:56 +08:00
|
|
|
],
|
|
|
|
)
|