-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 899 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
32
#!/usr/bin/env python
"""Holds project dependencies and metadata."""
from setuptools import find_packages, setup
setup(
name='overcooked_ai',
version='0.0.1',
description='Cooperative multi-agent environment based on Overcooked',
author=(
'Micah Carroll<mdc@berkeley.edu>, Matt Fontaine<mfontain@usc.edu>, '
'Stefanos Nikolaidis<nikolaid@usc.edu>, Ya-Chuan Hsu<yachuanh@usc.edu>'
'Yulun Zhang<yulunzha@usc.edu>, Bryon Tjanaka<tjanaka@usc.edu>'),
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'tqdm',
'alive_progress',
'gym',
'pygame',
'torch',
'matplotlib>=3.3.0',
'opencv-python',
'pandas',
'dask==2.30.0',
'dask-jobqueue==0.7.1',
'bokeh==2.2.3', # For the dashboard.
'toml',
'seaborn',
'akro',
])