1 Star 1 Fork 1

鬼&泣 / gym-super-mario-bros

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
Christian Kauten 提交于 2020-06-16 16:16 . Update setup.py
"""The setup script for installing the package."""
from setuptools import setup, find_packages
# read the contents of the README
with open('README.md') as README_md:
README = README_md.read()
setup(
name='gym_super_mario_bros',
version='7.3.2',
description='Super Mario Bros. for OpenAI Gym',
long_description=README,
long_description_content_type='text/markdown',
keywords=' '.join([
'OpenAI-Gym',
'NES',
'Super-Mario-Bros',
'Lost-Levels',
'Reinforcement-Learning-Environment',
]),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: Free For Educational Use',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Games/Entertainment :: Side-Scrolling/Arcade Games',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
url='https://github.com/Kautenja/gym-super-mario-bros',
author='Christian Kauten',
author_email='kautencreations@gmail.com',
license='Proprietary',
packages=find_packages(exclude=['tests', '*.tests', '*.tests.*']),
package_data={ 'gym_super_mario_bros': ['_roms/*.nes'] },
install_requires=['nes-py>=8.1.4'],
entry_points={
'console_scripts': [
'gym_super_mario_bros = gym_super_mario_bros._app.cli:main',
],
},
)
1
https://gitee.com/devilmaycry812839668/gym-super-mario-bros.git
git@gitee.com:devilmaycry812839668/gym-super-mario-bros.git
devilmaycry812839668
gym-super-mario-bros
gym-super-mario-bros
master

搜索帮助