Metadata-Version: 2.1
Name: neomaril-codex
Version: 1.0.3
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.0.3.tar.gz
Author: Datarisk
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Neomaril Codex

## 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 also some [examples](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/*
```
