Metadata-Version: 2.4
Name: spectrochempy-perkinelmer
Version: 0.1.3
Summary: PerkinElmer file reader plugin for SpectroChemPy
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: spectrochempy<0.12,>=0.10
Requires-Dist: numpy

# spectrochempy-perkinelmer

Optional SpectroChemPy plugin providing a reader for PerkinElmer `.sp` binary files.

## Installation

```bash
pip install plugins/spectrochempy-perkinelmer
```

## Usage

```python
import spectrochempy as scp

# Preferred short form
ds = scp.perkinelmer.read("path/to/file.sp")

# Alternative forms
ds = scp.read_perkinelmer("path/to/file.sp")
ds = scp.read_sp("path/to/file.sp")
```

## Limitations

- Only single-spectrum `.sp` files are supported.
- The `.prf` format is not supported.
- Metadata extraction depends on the presence of standard PerkinElmer blocks; files with incomplete metadata will still load but with reduced `meta` information.
