-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 897 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
from setuptools import setup
description = """Genetic Algorithms for Mapping Evolution (GAME) project. Submitted as part of a research project for the Evolutionary Computation and Swarm Intelligence course at Johns Hopkins University during Fall 2022."""
setup(
name='GAME',
version='1.0.0',
description='Genetic Algorithms for Mapping Evolution (GAME).',
long_description=description,
author='Minh Hua',
author_email='[email protected]',
license='MIT License',
keywords='Genetic Algorithms Transfer Learning Reinforcement Learning Mountain Car Keepaway',
url='https://github.com/duyminh1998/GAME',
packages=[
'GAME',
'GAME.agents',
'GAME.bin',
'GAME.envs',
'GAME.envs.keepaway',
'GAME.envs.mountain_car',
'GAME.utils'
],
install_requires=[
'gym==0.26.2',
'numpy==1.21.6'
],
)