Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vwxyzjn committed Apr 19, 2021
1 parent 6c9b371 commit 9817704
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.tfevents.*
wandb
openaigym.*
videos/*
cleanrl/videos/*
benchmark/**/*.svg
benchmark/**/*.pkl
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
import versioneer

extras = {
'gym_all': ['gym[all]', 'opencv-python'],
'gym_all': ['gym[atari]', 'gym[box2d]', 'opencv-python'],
'atari': ['gym[atari]'],
'box2d': ['gym[box2d]', 'opencv-python'],
'pybullet': ['pybullet'],
'pysc2': ['pysc2'],
'procgen': ['procgen']
'procgen': ['procgen'],
'cloud': ['boto3'],
'gym_microrts': ['gym_microrts'],
}

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

0 comments on commit 9817704

Please sign in to comment.