Skip to content

Commit b6837af

Browse files
committed
VMAS release 1.1.0
1 parent b99bd53 commit b6837af

File tree

7 files changed

+17
-5
lines changed

7 files changed

+17
-5
lines changed

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[metadata]
2+
description-file=README.md
3+
license_files=LICENSE

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@
66

77
setup(
88
name="vmas",
9-
version="0.0.1",
9+
version="1.1.0",
1010
description="Vectorized Multi-Agent Simulator",
1111
url="https://github.com/proroklab/VectorizedMultiAgentSimulator",
12+
license="GPLv3",
1213
author="Matteo Bettini",
1314
author_email="[email protected]",
1415
packages=find_packages(),
15-
install_requires=["torch", "numpy", "pyglet", "gym"],
16-
include_package_data=True,
17-
zip_safe=False,
16+
install_requires=[
17+
"numpy",
18+
"torch",
19+
"pyglet<=1.5.27",
20+
"gym<=0.23.1",
21+
"ray[rllib]<=2.1,>=1.13",
22+
],
1823
)

tests/test_use_maps_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import unittest
66

7-
from examples.use_vmas_env import use_vmas_env
7+
from vmas.examples.use_vmas_env import use_vmas_env
88

99

1010
class TestUseVmasEnv(unittest.TestCase):

vmas/examples/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright (c) 2022.
2+
# ProrokLab (https://www.proroklab.org/)
3+
# All rights reserved.
File renamed without changes.

examples/run_heuristic.py renamed to vmas/examples/run_heuristic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from typing import Type
66

77
import torch
8+
89
from vmas import make_env
910
from vmas.simulator.heuristic_policy import BaseHeuristicPolicy, RandomPolicy
1011
from vmas.simulator.utils import save_video
File renamed without changes.

0 commit comments

Comments
 (0)