-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathsetup.py
51 lines (47 loc) · 1.75 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""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.4.0',
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='[email protected]',
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',
],
},
)