25 lines
1013 B
Python
25 lines
1013 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='alr_envs',
|
|
version='0.0.1',
|
|
packages=['alr_envs', 'alr_envs.alr', 'alr_envs.open_ai', 'alr_envs.dmc', 'alr_envs.meta', 'alr_envs.utils', 'alr_envs.dmc.manipulation', 'alr_envs.dmc.suite'],
|
|
install_requires=[
|
|
'gym',
|
|
'PyQt5',
|
|
'matplotlib',
|
|
'mp_env_api @ git+https://github.com/ALRhub/motion_primitive_env_api.git',
|
|
# 'mp_env_api @ git+ssh://git@github.com/ALRhub/motion_primitive_env_api.git',
|
|
'mujoco-py<2.1,>=2.0',
|
|
'dm_control',
|
|
'metaworld @ git+https://github.com/rlworkgroup/metaworld.git@master#egg=metaworld',
|
|
],
|
|
|
|
url='https://github.com/ALRhub/alr_envs/',
|
|
license='MIT',
|
|
author='Fabian Otto, Marcel Sandermann, Maximilian Huettenrauch',
|
|
author_email='',
|
|
description='Custom Gym environments for various (robotics) tasks. integration of DMC environments into the'
|
|
'gym interface, and support for using motion primitives with gym environments.'
|
|
)
|