Metadata-Version: 2.1
Name: neomaril-codex
Version: 1.2.1
Summary: Python tools for interact with Neomaril
Home-page: https://datarisk-io.github.io/mlops-neomaril-codex/
Download-URL: https://github.com/datarisk-io/mlops-neomaril-codex/archive/refs/tags/v1.2.1.tar.gz
Author: Datarisk
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests==2.26.0
Requires-Dist: loguru==0.6.0
Requires-Dist: pyyaml
Requires-Dist: python-dotenv==0.21.0
Requires-Dist: cachetools
Requires-Dist: cloudpickle>=2.0.0
Requires-Dist: pyarrow>=1.0.0
Requires-Dist: pandas>=1.0.0

# Neomaril Codex

For the brazilian portuguese README, click [here :brazil:](./README.pt-br.md).

## About

Package for interacting with Neomaril, a tool for deploying ML models.

## Getting started

### Intalation
```
  pip install neomaril-codex
```

### How to use

Check the [documentation](https://datarisk-io.github.io/mlops-neomaril-codex) page for more information.

There's also some [example](https://github.com/datarisk-io/mlops-neomaril-codex/tree/master/notebooks) notebooks.

### For developers

Install pipenv

```
  pip install pipenv
```

Install the package enviroment

```
  pipenv update --dev
  pipenv shell
```

Publish to Pypi

```
  python setup.py sdist
  twine upload dist/*
```
