diff --git a/setup.py b/setup.py index 22e1d1c..7170fa6 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,21 @@ from setuptools import setup -setup(name='alr_envs', - version='0.0.1', - install_requires=['gym', - 'PyQt5', - 'matplotlib', - 'mp_lib @ git+https://git@github.com/maxhuettenrauch/mp_lib@master#egg=mp_lib', - 'mujoco_py'], # And any other dependencies foo needs - ) +setup( + name='alr_envs', + version='0.0.1', + packages=['alr_envs', 'alr_envs.classic_control', 'alr_envs.mujoco', 'alr_envs.stochastic_search', + 'alr_envs.utils'], + install_requires=[ + 'gym', + 'PyQt5', + 'matplotlib', + 'mp_env_api @ git+ssh://git@github.com/ALRhub/motion_primitive_env_api.git', + 'mujoco_py' + ], + + 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) simple_reacher.' +)