2022-07-06 09:05:35 +02:00
|
|
|
import itertools
|
|
|
|
|
2020-08-28 15:48:34 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
2022-07-06 09:05:35 +02:00
|
|
|
# Environment-specific dependencies for dmc and metaworld
|
|
|
|
extras = {
|
|
|
|
"dmc": ["dm_control"],
|
2022-07-06 09:18:41 +02:00
|
|
|
"meta": ["metaworld @ git+https://github.com/rlworkgroup/metaworld.git@master#egg=metaworld"],
|
2022-07-06 09:05:35 +02:00
|
|
|
"mujoco": ["mujoco==2.2.0", "imageio>=2.14.1"],
|
|
|
|
}
|
|
|
|
|
|
|
|
# All dependencies
|
|
|
|
all_groups = set(extras.keys())
|
|
|
|
extras["all"] = list(set(itertools.chain.from_iterable(map(lambda group: extras[group], all_groups))))
|
|
|
|
|
2021-06-24 16:51:38 +02:00
|
|
|
setup(
|
2022-07-06 09:05:35 +02:00
|
|
|
author='Fabian Otto, Onur Celik, Marcel Sandermann, Maximilian Huettenrauch',
|
|
|
|
name='simple_gym',
|
2021-06-24 16:51:38 +02:00
|
|
|
version='0.0.1',
|
2022-01-12 09:00:30 +01:00
|
|
|
packages=['alr_envs', 'alr_envs.alr', 'alr_envs.open_ai', 'alr_envs.dmc', 'alr_envs.meta', 'alr_envs.utils'],
|
2021-06-24 16:51:38 +02:00
|
|
|
install_requires=[
|
|
|
|
'gym',
|
2022-07-06 09:18:41 +02:00
|
|
|
"mujoco_py<2.2,>=2.1",
|
2021-06-24 16:51:38 +02:00
|
|
|
],
|
|
|
|
url='https://github.com/ALRhub/alr_envs/',
|
2022-07-06 09:05:35 +02:00
|
|
|
# license='AGPL-3.0 license',
|
2021-06-24 16:51:38 +02:00
|
|
|
author_email='',
|
2022-07-06 09:05:35 +02:00
|
|
|
description='Simple Gym: Aggregating interface for various RL environments with support for Black Box approaches.'
|
2021-06-24 16:51:38 +02:00
|
|
|
)
|