-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,34 @@ | |
from setuptools import find_packages | ||
|
||
setup(name='gym_mazeexplorer', | ||
version='0.0.1', | ||
author='Mr-Yellow', | ||
author_email='[email protected]', | ||
description='A maze exploration environment for openai/gym', | ||
packages=find_packages(), | ||
url='https://github.com/mryellow/gym-mazeexplorer', | ||
license='MIT', | ||
install_requires=['gym', 'mazeexp'] | ||
version='0.0.1', | ||
author='Mr-Yellow', | ||
author_email='[email protected]', | ||
description='A maze exploration environment for openai/gym', | ||
packages=find_packages(), | ||
url='https://github.com/mryellow/gym-mazeexplorer', | ||
license='MIT', | ||
install_requires=['gym', 'mazeexp'], | ||
classifiers=[ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 3 - Alpha', | ||
|
||
# Indicate who your project is intended for | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
|
||
# Pick your license as you wish (should match "license" above) | ||
'License :: OSI Approved :: MIT License', | ||
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.6', | ||
'Programming Language :: Python :: 2.7', | ||
], | ||
) | ||
|
||
|
||
|