forked from StephAO/overcooked_ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.12 KB
/
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
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(name='overcooked_ai',
version='1.1.0',
description='Cooperative multi-agent environment based on Overcooked',
long_description=long_description,
long_description_content_type="text/markdown",
author='Nathan Miller',
author_email='[email protected]',
url='https://github.com/HumanCompatibleAI/overcooked_ai',
download_url='https://github.com/HumanCompatibleAI/overcooked_ai/archive/refs/tags/1.1.0.tar.gz',
packages=find_packages('src'),
keywords=['Overcooked', 'AI', 'Reinforcement Learning'],
package_dir={"": "src"},
package_data={
'overcooked_ai_py' : [
'data/layouts/*.layout', 'data/planners/*.py', 'data/human_data/*.pickle',
'data/graphics/*.png', 'data/graphics/*.json', 'data/fonts/*.ttf',
],
},
install_requires=[
'numpy',
'scipy',
'tqdm',
'gym',
'ipython',
'pygame',
'ipywidgets'
]
)