Metadata-Version: 2.1
Name: bbrl_gym
Version: 1.2.2
Summary: A set of additional gym environments
Home-page: https://github.com/osigaud/my_gym
Author: Olivier Sigaud
Author-email: Olivier.Sigaud@isir.upmc.fr
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

The my_gym library is the place where I put additional gym-like environments.

So far, it contains the following environments:
- CartPoleContinuous-v0 (with timit limit = 200 steps)
- CartPoleContinuous-v1 (with timit limit = 500 steps)
- MazeMDP, a Maze environment for Tabular RL
- RocketLander-v0, a rocket landing simulation adapted from [this repository](https://github.com/sdsubhajitdas/Rocket_Lander_Gym)
- LineMDP-v0, a simple discrete state and action MDP
- LineMDPContinuous-v0, a simple discrete action MDP
- 2DMDPContinuous-v0, a discrete action MDP with 2D state

Besides, the gym version is forced to 0.21.0 to avoid the large changes that have appeared after version 0.22


## Installation

```
pip install -e .
```

## Use it

```
import gym
import my_gym

env = gym.make("CartPoleContinuous-v0")  # or -v1 or any other and then use your environment as usual
```
