-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.8 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.8 KB
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
"""The setup script for installing and distributing the gymnesium package."""
from setuptools import setup
# read the contents from the README file
with open('README.md') as README_file:
README = README_file.read()
setup(
name='boxing_gym',
version='0.1.15',
description='An Mike Tyson\'s Punch Out!! Gymnasium Environment',
long_description=README,
long_description_content_type='text/markdown',
keywords='NES Emulator OpenAI-Gym Gymnasium Punch-Out Reinforcement-Learning-Environment',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: C++',
'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',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Emulators',
],
url='https://github.com/Hal609/BoxingGym',
author='Hal Kolb',
author_email='hal@kolb.co.uk',
license='MIT',
package_data={ 'boxing_gym': ['data.bin'] },
install_requires=[
"numpy>=1.18.5",
"gymnasium>=1.0.0",
"opencv-python>=4.10.0.84",
"gymnesium>=0.1.7"
],
)