Metadata-Version: 2.4
Name: statmaster-raghav
Version: 0.1.0
Summary: Statistics and data analysis toolkit
Author-email: Raghav Shetty <raghavshetty1611@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# statmaster

A Python package for descriptive statistics and outlier detection.

## Installation

```bash
pip install statmaster
```

## Usage

```python
from statmaster import DataAnalyzer

analyzer = DataAnalyzer([10, 20, 30, 40, 100])
print(analyzer.summary())
```
