Metadata-Version: 2.1
Name: gym-raas
Version: 0.0.1
Summary: Custom OpenAI gym environments for Perciplex RaaS platform
Home-page: https://github.com/perciplex/gym-raas
Author: Max King, Benjamin Wiener, Declan Oller, Philip Zucker
Author-email: team@perciplex.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: gym

# RaaS Gym Environments
These are the gym environments designed to be used with RaaS.

Currently, we have the pendulum-v0 implementation.

# Installation
```
cd gym_raas
pip install -e .
```

# Use

```
import gym
import gym_raas
env_pend = gym.make('raaspendulum-v0')
```


