Metadata-Version: 2.1
Name: sharpstock
Version: 0.1.0
Summary: A simple Python library to calculate the Sharpe Ratio of a stock.
Author: tim-hub
Author-email: tim-hub@users.noreply.github.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Description-Content-Type: text/markdown

# Sharpe Stock


A simple Python library to calculate the Sharpe Ratio of a stock.

## How to use

```
pip install sharpestock
```

```python
from sharpestock.sharpe_ratio import calculate_sharpe_ratio
df = pd.read_csv('data.csv')
calculate_sharpe_ratio(df)
```



## Features

- [x] Sharpe Ratio Calculation
- [ ] Calculate Sharpe Ratio for multiple stocks

