-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
31 lines (30 loc) · 896 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
31
from setuptools import setup, find_packages
setup(name='gym_cooking',
version='0.0.1',
description='Too Many Cooks: Overcooked environment',
author='Rose E. Wang',
email='[email protected]',
packages=find_packages(),
install_requires=[
'cloudpickle==1.3.0',
'decorator==4.4.2',
'dill==0.3.2',
'future==0.18.2',
'gym==0.17.2',
'matplotlib==3.3.2',
'networkx==2.5',
'numpy==1.19.2',
'pandas==1.1.2',
'Pillow>=8.1.1',
'pygame==1.9.6',
'pyglet==1.5.0',
'pyparsing==2.4.7',
'python-dateutil==2.8.1',
'pytz==2020.1',
'scipy==1.5.2',
'seaborn==0.11.0',
'six==1.15.0',
'termcolor==1.1.0',
'tqdm==4.50.1',
]
)