forked from Kautenja/gym-tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (52 loc) · 1.8 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
52
53
54
55
56
from setuptools import setup, find_packages
def README() -> str:
"""Return the contents of the README file for this project."""
with open('README.md') as README_file:
return README_file.read()
setup(
name='gym_tetris',
setup_requires=[
'very-good-setuptools-git-version'
],
version_format='{tag}',
description='Tetris for OpenAI Gym',
long_description=README(),
long_description_content_type='text/markdown',
keywords='OpenAI-Gym Tetris Reinforcement-Learning-Environment',
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Games/Entertainment :: Arcade',
'Topic :: Games/Entertainment :: Puzzle Games',
'Topic :: Games/Entertainment :: Real Time Strategy',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url='https://github.com/Kautenja/gym-tetris',
author='Christian Kauten',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
zip_safe=False,
install_requires=[
'gym>=0.10.5',
'matplotlib>=2.0.2',
'numpy>=1.14.2',
'opencv-python>=3.4.0.12',
'pygame>=1.9.3',
'pyglet>=1.3.2',
'tqdm>=4.19.5',
],
entry_points={
'console_scripts': [
'gym_tetris = gym_tetris._app.cli:main',
],
},
)