Metadata-Version: 2.4
Name: easy-rl-env
Version: 0.1.0
Summary: Easily create custom RL environments for Gymnasium
Home-page: https://github.com/yourusername/easy-rl-env
Author: Your Name
Author-email: you@example.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: gymnasium
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# EasyRLEnv

Easily create custom RL environments with minimal boilerplate.

## Installation
```bash
pip install easy-rl-env
```

## Example
```python
from easy_rl_env import EasyEnv

class MyCustomEnv(EasyEnv):
    def __init__(self):
        super().__init__(observation_shape=(4,), action_shape=(2,), discrete=True)

    def reset(self):
        self.state = [0, 0, 0, 0]
        return self.state, {}

    def step(self, action):
        reward = 1 if action == 0 else -1
        done = False
        return self.state, reward, done, {}
```

## License
MIT
