fancy_gym/setup.py

7 lines
178 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-12 10:52:08 +01:00
install_requires=['gym', 'PyQt5', 'matplotlib'] # And any other dependencies foo needs
)