-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
30 lines (28 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='gym-games',
version='2.0.0',
keywords=['AI', 'Reinforcement Learning', 'Games', 'Pygame', 'MinAtar'],
description='A gymnasium version of various games for reinforcement learning.',
url='https://github.com/qlan3/gym-games',
author='qlan3',
author_email='qlan3@ualberta.ca',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.7',
install_requires=[
'MinAtar==1.0.15',
'gymnasium>=0.28.1',
'setuptools>=69.0.3',
'pygame==2.5.2',
'ple==0.0.1'
],
dependency_links=[
'git+https://github.com/kenjyoung/MinAtar@master#egg=MinAtar-1.0.15',
'git+https://github.com/ntasfi/PyGame-Learning-Environment@master#egg=ple-0.0.1'
]
)