mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-01 06:07:08 +00:00
box2d kengz vs py (#1097)
* try build with box2d-kengz * test box2d envs * use box2d-py in tox.ini for tests * box2d-py instead of box2d-kengz in box2d dependencies * test dependencies in tox.ini use dependencies in setup.py * further cleanups of tox.ini * further cleanups * added scipy to list of requirements
This commit is contained in:
4
setup.py
4
setup.py
@@ -8,7 +8,7 @@ from version import VERSION
|
||||
# Environment-specific dependencies.
|
||||
extras = {
|
||||
'atari': ['atari_py>=0.1.1', 'Pillow', 'PyOpenGL'],
|
||||
'box2d': ['Box2D-kengz'],
|
||||
'box2d': ['box2d-py'],
|
||||
'classic_control': ['PyOpenGL'],
|
||||
'mujoco': ['mujoco_py>=1.50', 'imageio'],
|
||||
'robotics': ['mujoco_py>=1.50', 'imageio'],
|
||||
@@ -31,7 +31,7 @@ setup(name='gym',
|
||||
if package.startswith('gym')],
|
||||
zip_safe=False,
|
||||
install_requires=[
|
||||
'numpy>=1.10.4', 'requests>=2.0', 'six', 'pyglet>=1.2.0',
|
||||
'scipy', 'numpy>=1.10.4', 'requests>=2.0', 'six', 'pyglet>=1.2.0',
|
||||
],
|
||||
extras_require=extras,
|
||||
package_data={'gym': [
|
||||
|
Reference in New Issue
Block a user