Metadata-Version: 2.4
Name: geo-mlops-sdk
Version: 0.0.1
Summary: MLOps SDK
Author-email: zer0 <osom8979@gmail.com>
Maintainer-email: zer0 <osom8979@gmail.com>
License-Expression: MIT
Keywords: machine-learning,mlops,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=3.14
Description-Content-Type: text/markdown

# Geo-MLOps-SDK

## Installation

```bash
pip install geo-mlops-sdk
```

## Usage

```python
import geo_mlops_sdk

print(geo_mlops_sdk.__version__)
```

## Development

This project uses [uv](https://docs.astral.sh/uv/) for dependency management.

```bash
uv sync --group dev
```

Quality tooling (wrappers run the tool from the project root):

```bash
./black.sh      # format check (use --fix to edit in place)
./isort.sh      # import order check (use --fix to edit in place)
./flake8.sh     # lint
./mypy.sh       # type check
./pytest.sh     # tests with coverage
```
