Metadata-Version: 2.1
Name: gatoniel-utils
Version: 0.1.0
Summary: Library with utils and helpers for myself.
Home-page: https://github.com/gatoniel/gatoniel-utils
License: MIT
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: numpy (>=1.20.1,<2.0.0)
Requires-Dist: scikit-image (>=0.18.1,<0.19.0)
Requires-Dist: scipy (>=1.6.1,<2.0.0)
Project-URL: Repository, https://github.com/gatoniel/gatoniel-utils
Description-Content-Type: text/markdown

# gatoniel-utils

[![Build Status](https://github.com/gatoniel/gatoniel-utils/workflows/test/badge.svg?branch=master&event=push)](https://github.com/gatoniel/gatoniel-utils/actions?query=workflow%3Atest)
[![codecov](https://codecov.io/gh/gatoniel/gatoniel-utils/branch/master/graph/badge.svg)](https://codecov.io/gh/gatoniel/gatoniel-utils)
[![Python Version](https://img.shields.io/pypi/pyversions/gatoniel-utils.svg)](https://pypi.org/project/gatoniel-utils/)
[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)

Library with utils and helpers for myself.


## Features

- Fully typed with annotations and checked with mypy, [PEP561 compatible](https://www.python.org/dev/peps/pep-0561/)
- Add yours!


## Installation

```bash
pip install gatoniel-utils
```


## Example

Showcase how your project can be used:

```python
from gatoniel_utils.example import some_function

print(some_function(3, 4))
# => 7
```

## License

[MIT](https://github.com/gatoniel/gatoniel-utils/blob/master/LICENSE)


## Credits

This project was generated with [`wemake-python-package`](https://github.com/wemake-services/wemake-python-package). Current template version is: [0c5619079cb74e7dc72e1f18e9176b3b3a1a843f](https://github.com/wemake-services/wemake-python-package/tree/0c5619079cb74e7dc72e1f18e9176b3b3a1a843f). See what is [updated](https://github.com/wemake-services/wemake-python-package/compare/0c5619079cb74e7dc72e1f18e9176b3b3a1a843f...master) since then.

