Metadata-Version: 2.4
Name: sweetpareto-cython
Version: 1.0.0rc1
Summary: Cython engine for sweetpareto
Project-URL: Homepage, https://codeberg.org/djsn/sweet-pareto
Project-URL: Issues, https://codeberg.org/djsn/sweet-pareto/issues
Maintainer-email: Andrew Johnson <drew@djsn.dev>
License-Expression: MPL-2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Scientific/Engineering :: Visualization
Requires-Python: <3.15,>=3.11
Requires-Dist: numpy
Description-Content-Type: text/markdown

# sweetpareto-cython

Cython engine for the [`sweetpareto`](https://pypi.org/project/sweetpareto) project

## Usage

Install with your installer of choice, e.g.,
```shell
pip install sweetpareto-cython
```

Then pass to `sweetpareto` with
```python
import sweetpareto.vis
from sweetpareto_cython import cython_front_indices

sweetpareto.vis.pareto_plot(df, x, y, ..., engine=cython_front_indices)
```

This engine also has first-class support within `sweetpareto`. Meaning you can install with e.g.,
```shell
pip install sweetpareto[cython]
```
and invoke with
```python
import sweetpareto.vis

sweetpareto.vis.pareto_plot(df, x, y, ..., engine="cython")
```
