-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
42 lines (39 loc) · 1.38 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
36
37
38
39
40
41
42
#!/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='oai_agents',
version='0.1.0',
description='Cooperative multi-agent environment based on Overcooked',
long_description=long_description,
long_description_content_type="text/markdown",
author='Stéphane Aroca-Ouellette',
author_email='[email protected]',
url='https://github.com/StephAO/oai_agents',
download_url='https://github.com/StephAO/oai_agents',
keywords=['Overcooked', 'AI', 'Reinforcement Learning', 'Human Agent Collaboration'],
# packages=find_packages('oai_agents'),
# package_dir={"": "oai_agents"},
packages=['oai_agents', 'oai_agents.agents', 'oai_agents.gym_environments', 'oai_agents.common'],
package_dir={
'oai_agents': 'oai_agents',
'oai_agents.agents': 'oai_agents/agents',
'oai_agents.gym_environments': 'oai_agents/gym_environments',
'oai_agents.common': 'oai_agents/common'
},
package_data={
'oai_agents' : [
'data/*.pickle'
],
},
install_requires=[
'numpy',
'stable_baselines3==1.6.1',
'sb3_contrib==1.6.1',
'tqdm',
'wandb',
'gym',
'pygame',
],
tests_require=['pytest']
)