Skip to content

Commit 9817704

Browse files
committed
update setup.py
1 parent 6c9b371 commit 9817704

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.tfevents.*
22
wandb
33
openaigym.*
4+
videos/*
45
cleanrl/videos/*
56
benchmark/**/*.svg
67
benchmark/**/*.pkl

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
import versioneer
33

44
extras = {
5-
'gym_all': ['gym[all]', 'opencv-python'],
5+
'gym_all': ['gym[atari]', 'gym[box2d]', 'opencv-python'],
6+
'atari': ['gym[atari]'],
7+
'box2d': ['gym[box2d]', 'opencv-python'],
68
'pybullet': ['pybullet'],
79
'pysc2': ['pysc2'],
8-
'procgen': ['procgen']
10+
'procgen': ['procgen'],
11+
'cloud': ['boto3'],
12+
'gym_microrts': ['gym_microrts'],
913
}
1014

1115
extras['all'] = [item for group in extras.values() for item in group]

0 commit comments

Comments
 (0)