Metadata-Version: 2.1
Name: pyglotaran-extras
Version: 0.7.2
Summary: Supplementary package for pyglotaran with (example) plotting code.
Project-URL: Changelog, https://pyglotaran-extras.readthedocs.io/en/latest/changelog.html
Project-URL: Documentation, https://pyglotaran-extras.readthedocs.io
Project-URL: GloTarAn Ecosystem, https://glotaran.org
Project-URL: Homepage, https://github.com/glotaran/pyglotaran-extras
Project-URL: Source, https://github.com/glotaran/pyglotaran-extras
Project-URL: Tracker, https://github.com/glotaran/pyglotaran-extras/issues
Author-email: Joris Snellenburg <j.snellenburg@gmail.com>
License: The MIT License (MIT)
        Copyright (c) 2021 Joris Snellenburg
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
        EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
        IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
        DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
        TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
        THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.10
Requires-Dist: cycler>=0.10
Requires-Dist: matplotlib>=3.3
Requires-Dist: numpy>=1.21.2
Requires-Dist: pyglotaran>=0.7
Requires-Dist: tabulate>=0.8.9
Requires-Dist: xarray>=2022.3
Provides-Extra: dev
Requires-Dist: pyglotaran-extras[docs,test]; extra == 'dev'
Provides-Extra: docs
Requires-Dist: jupyterlab>=3; extra == 'docs'
Requires-Dist: myst-parser>=0.12; extra == 'docs'
Requires-Dist: nbsphinx>=0.8.1; extra == 'docs'
Requires-Dist: numpydoc>=0.8; extra == 'docs'
Requires-Dist: sphinx-copybutton>=0.3; extra == 'docs'
Requires-Dist: sphinx-last-updated-by-git>=0.3; extra == 'docs'
Requires-Dist: sphinx-rtd-theme>=1.2; extra == 'docs'
Requires-Dist: sphinx>=3.2; extra == 'docs'
Requires-Dist: sphinxcontrib-jquery>=4.1; extra == 'docs'
Provides-Extra: test
Requires-Dist: coverage[toml]; extra == 'test'
Requires-Dist: nbval>=0.9.6; extra == 'test'
Requires-Dist: pluggy>=0.7; extra == 'test'
Requires-Dist: pytest-cov>=2.5.1; extra == 'test'
Requires-Dist: pytest>=3.7.1; extra == 'test'
Description-Content-Type: text/markdown

# pyglotaran-extras

[![PyPI version](https://badge.fury.io/py/pyglotaran-extras.svg)](https://badge.fury.io/py/pyglotaran-extras)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/pyglotaran-extras.svg)](https://anaconda.org/conda-forge/pyglotaran-extras)
[![Tests](https://github.com/glotaran/pyglotaran-extras/actions/workflows/test.yml/badge.svg)](https://github.com/glotaran/pyglotaran-extras/actions/workflows/test.yml)
[![Documentation Status](https://readthedocs.org/projects/pyglotaran-extras/badge/?version=latest)](https://pyglotaran-extras.readthedocs.io/en/latest/?badge=latest)
[![Binder](https://static.mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/glotaran/pyglotaran-extras.git/main?urlpath=lab%2Ftree%2Fdocs%2Fsource%2Fnotebooks)

[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![codecov](https://codecov.io/gh/glotaran/pyglotaran-extras/branch/main/graph/badge.svg?token=I6F412Y390)](https://codecov.io/gh/glotaran/pyglotaran-extras)
[![Discord](https://img.shields.io/discord/883443835135475753.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/KfnEYRSTJx)

Supplementary package for pyglotaran with (example) plotting code for use with the pyglotaran package.
Can be installed as a python package or from sources.

## Installation

Prerequisites:

- Python 3.10 or 3.11
- Python package `pyglotaran` v0.7.0 (or later)

### Stable Release

To install pyglotaran-extras from [PyPI](https://pypi.org/), run this command in your terminal:

```console
pip install pyglotaran-extras
```

If you want to install it via conda, you can run the following command:

```console
conda install -c conda-forge pyglotaran-extras
```

### From Source

To install pyglotaran-extras from sources, either clone this repository or download the latest release, then run this command in your terminal:

```console
git clone https://github.com/glotaran/pyglotaran-extras.git
cd pyglotaran-extras
pip install -e .
```

or directly

```console
pip install git+https://github.com/glotaran/pyglotaran-extras.git
```
