forked from openai/multiagent-competition
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 747 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from os.path import dirname, realpath
from setuptools import find_packages, setup
def read_requirements_file(filename):
req_file_path = '%s/%s' % (dirname(realpath(__file__)), filename)
with open(req_file_path) as f:
return [line.strip() for line in f]
setup(name='gym_compete',
author='Trapit Bansal et al, with modifications by Adam Gleave',
version='0.0.2',
url='https://github.com/HumanCompatibleAI/multiagent-competition',
python_requires='>=3.6.0',
packages=find_packages(exclude=('tests',)),
package_data={'gym_compete':
[
'new_envs/assets/*.xml',
'agent_zoo/*/*.pkl',
],
},
install_requires=read_requirements_file('requirements.txt'),
)