Metadata-Version: 2.4
Name: rl-discounted-return
Version: 0.1.0
Summary: A simple discounted return calculator for Reinforcement Learning.
Author: Jinal Chhajer
License: MIT
License-File: LICENSE
Keywords: discounted-return,machine-learning,reinforcement-learning,rl
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# rl-discounted-return

A lightweight package to compute **discounted cumulative returns** — a key concept in Reinforcement Learning (RL).

## Example Usage
```python
from rldiscountedreturn_colab import discounted_return
rewards = [1, 1, 1, 1, 1]
gamma = 0.9
print(discounted_return(rewards, gamma))  # Output: 4.095
```

Author: Jinal Chhajer
