fancy_gym/setup.py

24 lines
811 B
Python
Raw Normal View History

2020-08-28 15:48:34 +02:00
from setuptools import setup
2021-06-24 16:51:38 +02:00
setup(
name='alr_envs',
version='0.0.1',
packages=['alr_envs', 'alr_envs.classic_control', 'alr_envs.open_ai', 'alr_envs.mujoco', 'alr_envs.dmc',
2021-06-24 16:51:38 +02:00
'alr_envs.utils'],
install_requires=[
'gym',
'PyQt5',
'matplotlib',
'mp_env_api @ git+ssh://git@github.com/ALRhub/motion_primitive_env_api.git',
2021-07-05 09:52:41 +02:00
'mujoco-py<2.1,>=2.0',
2021-07-02 06:12:32 +02:00
'dm_control'
2021-06-24 16:51:38 +02:00
],
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.'
2021-06-24 16:51:38 +02:00
)