-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new gym spaces API with dtype; updated required packages
- Loading branch information
1 parent
8aaeb4d
commit 7033a1b
Showing
4 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
from setuptools import setup | ||
import sys | ||
|
||
# Only support Python 3 | ||
if sys.version_info.major != 3: | ||
print(f'WARNING: This package only officially support Python 3, the current version is Python {sys.version_info.major}. The installation will likely fail. ') | ||
|
||
setup(name='gym_maze', | ||
version='1.0', | ||
install_requires=['gym', 'numpy', 'scikit-image'] | ||
install_requires=['gym', | ||
'numpy', | ||
'matplotlib', | ||
'scikit-image', | ||
'jupyterlab'], | ||
description='gym-maze: A customizable gym environment for maze and gridworld', | ||
author='Xingdong Zuo', | ||
url='https://github.com/zuoxingdong/gym-maze', | ||
version='0.1' | ||
) |