Metadata-Version: 2.1
Name: koyo
Version: 0.2.5
Summary: Simple python ulitities for various projects.
Author-email: "Lukasz G. Migas" <lukas.migas@yahoo.com>
License: BSD 3-Clause License
Project-URL: homepage, https://github.com/vandeplaslab/koyo
Project-URL: repository, https://github.com/vandeplaslab/koyo
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: numba
Requires-Dist: natsort
Requires-Dist: loguru
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: ipython ; extra == 'dev'
Requires-Dist: mypy ; extra == 'dev'
Requires-Dist: pdbpp ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: rich ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: koyo[test] ; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest (>=6.0) ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

# Kōyō

A little library of utility functions that are used throughout various libraries of the Van de Plas lab.

[![License](https://img.shields.io/pypi/l/koyo.svg?color=green)](https://github.com/vandeplaslab/koyo/raw/main/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/koyo.svg?color=green)](https://pypi.org/project/koyo)
[![Python Version](https://img.shields.io/pypi/pyversions/koyo.svg?color=green)](https://python.org)
[![CI](https://github.com/vandeplaslab/koyo/actions/workflows/ci.yml/badge.svg)](https://github.com/vandeplaslab/koyo/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/vandeplaslab/koyo/branch/main/graph/badge.svg)](https://codecov.io/gh/vandeplaslab/koyo)

## Installation

```bash
pip install koyo
```

## Contributing

Contributions are always welcome. Please feel free to submit PRs with new features, bug fixes, or documentation improvements.

```bash
git clone https://github.com/vandeplaslab/koyo.git

pip install -e .[dev]
```
