Metadata-Version: 2.4
Name: ctapipe_io_nectarcam
Version: 0.2.3
Summary: ctapipe plugin for reading NectarCam files
Author: NectarCAM collaboration
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/cta-observatory/ctapipe_io_nectarcam/issues
Project-URL: Source Code, https://github.com/cta-observatory/ctapipe_io_nectarcam
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: ctapipe~=0.24.0
Requires-Dist: protozfits
Requires-Dist: scipy
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-xdist; extra == "test"
Provides-Extra: dev
Requires-Dist: setuptools_scm; extra == "dev"
Provides-Extra: all
Requires-Dist: ctapipe_io_nectarcam[dev,test]; extra == "all"
Dynamic: license-file

[![CI](https://github.com/cta-observatory/ctapipe_io_nectarcam/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/cta-observatory/ctapipe_io_nectarcam/actions/workflows/ci.yml?query=workflow%3ACI+branch%3Amain)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.17466683.svg)](https://doi.org/10.5281/zenodo.17466683)

EventSource Plugin for ctapipe, able to read NectarCAM zfits files
and calibrate them to R1 as needed for ctapipe tools.

To install into an existing environment, just do:
```shell
pip install .
```

or:
```shell
mamba install -c conda-forge ctapipe-io-nectarcam 
```

For development, create a new environment and run the development install:
```shell
mamba env create -n nectar-dev -f environment.yml
mamba activate nectar-dev
pip install -e .
pre-commit install
```
