-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
50 lines (44 loc) · 1.54 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
43
44
45
46
47
48
49
50
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup
description = """MAMuJoCo - Multi-Agent MuJoCo
Benchmark for Continuous Multi-Agent Robotic Control, based on OpenAI's Mujoco Gym environments.
Described in the paper Deep Multi-Agent Reinforcement Learning for Decentralized Continuous Cooperative Control
by Christian Schroeder de Witt, Bei Peng, Pierre-Alexandre Kamienny, Philip Torr, Wendelin Böhmer and Shimon Whiteson,
Torr Vision Group and Whiteson Research Lab, University of Oxford, 2020
Contact CSDW at cs@robots.ox.ac.uk
"""
extras_deps = {
"dev": [
"pre-commit>=2.0.1",
"black>=19.10b0",
"flake8>=3.7",
"flake8-bugbear>=20.1",
],
}
setup(
name="MAMujoco",
version="1.1.0",
description="MAMuJoCo - Multi-Agent MuJoCo.",
long_description=description,
author="Christian Schroeder de Witt",
author_email="cs@robots.ox.ac.uk",
license="Apache 2.0 License",
keywords="Robotics, MuJoCo, Multi-Agent Reinforcement Learning",
url="/~https://github.com/schroederdewitt/multiagent_mujoco",
packages=[
"multiagent_mujoco",
"multiagent_mujoco.assets",
],
extras_require=extras_deps,
install_requires=[
"numpy>=1.22.3",
"gym==0.10.8",
"mujoco-py>=2.1.2.14",
"scipy>=1.8.0",
"Jinja2>=3.0.3",
"glfw>=2.5.1",
"Cython>=0.29.28"
],
)