Metadata-Version: 2.4
Name: pyprocessors-tag2segment
Version: 0.6.11
Summary: Create segments from annotations
Project-URL: Homepage, https://github.com/oterrier/pyprocessors_tag2segment/
Author-email: Olivier Terrier <olivier.terrier@kairntech.com>
License-Expression: MIT
License-File: AUTHORS.md
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Requires-Dist: collections-extended
Requires-Dist: pandas>=2.0.0
Requires-Dist: pyicu
Requires-Dist: pymultirole-plugins<0.7.0,>=0.6.0
Provides-Extra: dev
Requires-Dist: bump2version; extra == 'dev'
Requires-Dist: pre-commit; extra == 'dev'
Provides-Extra: docs
Requires-Dist: jupyter-sphinx; extra == 'docs'
Requires-Dist: lxml-html-clean; extra == 'docs'
Requires-Dist: m2r2; extra == 'docs'
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Requires-Dist: sphinxcontrib-apidoc; extra == 'docs'
Provides-Extra: test
Requires-Dist: dirty-equals; extra == 'test'
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Requires-Dist: ruff; extra == 'test'
Description-Content-Type: text/markdown

# pyprocessors_tag2segment

[![license](https://img.shields.io/github/license/oterrier/pyprocessors_tag2segment)](https://github.com/oterrier/pyprocessors_tag2segment/blob/master/LICENSE)
[![tests](https://github.com/oterrier/pyprocessors_tag2segment/workflows/tests/badge.svg)](https://github.com/oterrier/pyprocessors_tag2segment/actions?query=workflow%3Atests)
[![codecov](https://img.shields.io/codecov/c/github/oterrier/pyprocessors_tag2segment)](https://codecov.io/gh/oterrier/pyprocessors_tag2segment)
[![docs](https://img.shields.io/readthedocs/pyprocessors_tag2segment)](https://pyprocessors_tag2segment.readthedocs.io)
[![version](https://img.shields.io/pypi/v/pyprocessors_tag2segment)](https://pypi.org/project/pyprocessors_tag2segment/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyprocessors_tag2segment)](https://pypi.org/project/pyprocessors_tag2segment/)

Create segments from annotations

## Installation

You can simply `pip install pyprocessors_tag2segment`.

## Developing

### Pre-requisites

You will need to install `uv` (for package management and building):

```
pip install uv
```

Clone the repository:

```
git clone https://github.com/oterrier/pyprocessors_tag2segment
```

### Install dependencies

```
uv sync --extra test
```

### Running the test suite

```
uv run pytest
```

### Linting

```
uv run ruff check .
uv run ruff format --check .
```

### Building the documentation

```
uv run --extra docs sphinx-build docs docs/_build
```

The built documentation is available at `docs/_build/index.html`.
