Metadata-Version: 2.2
Name: medapy
Version: 0.3.2a0
Summary: A Python package to work with measured data
Project-URL: Homepage, https://github.com/razorgecko/medapy
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy>=2.2
Requires-Dist: pandas>=2.2
Requires-Dist: pint>=0.24
Requires-Dist: pint-pandas>=0.7
Provides-Extra: fit
Requires-Dist: scipy>=1.15; extra == "fit"
Requires-Dist: numdifftools>=0.9; extra == "fit"
Requires-Dist: lmfit>=1.3; extra == "fit"
Provides-Extra: plot
Requires-Dist: matplotlib>=3.10; extra == "plot"
Provides-Extra: all
Requires-Dist: medapy[fit,plot]; extra == "all"

# MeDaPy
**Me**asurement **Da**ta **Py**thon package

## Description
A Python package to work with measured data

## Installation

```bash
pip install medapy[OPTION]
```

where OPTION can be one of:
- `plot` - to use plot configs
- `fit` - for fitting capabilities
- `all` - includes all optional dependencies

### Requirements
Basic installation: `numpy, pandas, pint, pint-pandas`

\[fit\]: `scipy, lmfit`

\[plot\]: `matplotlib`

## Examples
The files in `examples` folder should provide a basic familiarity with package capabilities

[Examples](./examples/)

## TODO
[TODO](todo.md)
