-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christian Schroeder de Witt
committed
Apr 13, 2022
1 parent
d0f35a0
commit b90252d
Showing
26 changed files
with
103 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#.idea/ | ||
.DS_Store | ||
*.pyc | ||
__pycache__/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 [email protected] | ||
""" | ||
|
||
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="[email protected]", | ||
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" | ||
], | ||
) |
Binary file not shown.
Binary file removed
BIN
-2.28 KB
src/multiagent_mujoco/__pycache__/coupled_half_cheetah.cpython-36.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.