Metadata-Version: 2.1
Name: n6py
Version: 0.1.12
Summary: N6 AI Python Tools
Home-page: https://github.com/n6ai/n6py
License: MIT
Keywords: n6py,ai,artificial intelligence,dl,deep learning,ml,machine learning,jupyter,notebook
Author: Sergej Samsonenko
Author-email: contact@sergej.codes
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 1 - Planning
Classifier: Framework :: Jupyter
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: numpy (>=1.23.5,<2.0.0)
Requires-Dist: pandas (>=1.5.2,<2.0.0)
Project-URL: Bug Tracker, https://github.com/n6ai/n6py/issues
Project-URL: Documentation, https://github.com/n6ai/n6py
Project-URL: Repository, https://github.com/n6ai/n6py
Description-Content-Type: text/markdown

# N6 Py

[![PyPI Latest Release](https://img.shields.io/pypi/v/n6py?color=%23141414&style=for-the-badge)](https://pypi.org/project/n6py)
[![Package Status](https://img.shields.io/pypi/status/n6py?color=%23141414&style=for-the-badge)](https://pypi.org/project/n6py)
[![Code style: black](https://img.shields.io/badge/code%20style-black-141414.svg?style=for-the-badge)](https://github.com/psf/black)

## About

N6 AI Python Tools.

Tooling for common problems in Scientific Computing, Machine Learning and Deep Learning.

## Installing

**pip**

```sh
pip install n6py
```

**Poetry**

```sh
poerty add n6py
```

## Using

To use the `n6py` package import it into your project.

```py
import n6py as n6
```

## Development

### Prerequisites

- [Python v3+](https://www.python.org/downloads/)
- [Poetry](https://python-poetry.org/)

### Installing

```sh
poetry install
poetry run pre-commit install
```

