-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 768 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 768 Bytes
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
from setuptools import setup
packages = [
'pyqtgraph==0.11.1',
'pyyaml',
'opencv-python',
'gym==0.15.4',
'stable_baselines==2.7.0',
'tensorflow==1.12.0',
'procgen',
'dataclasses',
'gym_sokoban',
'box2d'
# 'pyglet==1.5.11'
]
setup(
name='stadium',
description='Interactive design of learning environments.',
long_description='GUI for OpenAI Gym, training/testing scripts, environment/algorithm configuration scheme.',
version='0.5',
packages=['stadium'],
scripts=[],
author='Andrius Bernatavicius',
author_email='a.bernatavicius@liacs.leidenuniv.nl',
url='none',
download_url='none',
install_requires=packages
)
print ("Installation complete.\n")