fancy_gym/setup.py

8 lines
284 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',
2021-01-14 17:10:03 +01:00
install_requires=['gym', 'PyQt5', 'matplotlib',
'mp_lib @ git+https://git@github.com/maxhuettenrauch/mp_lib@master#egg=mp_lib',], # And any other dependencies foo needs
)