fancy_gym/setup.py

11 lines
368 B
Python
Raw Normal View History

2020-08-28 15:48:34 +02:00
from setuptools import setup
2020-08-28 18:31:06 +02:00
setup(name='alr_envs',
2020-08-28 15:48:34 +02:00
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
)