Metadata-Version: 2.4
Name: ai4one
Version: 0.1.1
Summary: A small machine learning package
Author-email: bestenevoy <bestenevoy@outlook.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/bestenevoy/ai4one
Project-URL: Issues, https://github.com/bestenevoy/ai4one/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dataclasses-json<=0.5.7
Requires-Dist: numpy
Requires-Dist: openai>=0.8.0
Requires-Dist: simple-parsing>=0.1.5
Requires-Dist: typer
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Dynamic: license-file

# AI4One

This is a small package for machine learning.

## Installation

Install AI4One using pip:

```bash
pip install ai4one
```

Ensure you have Python 3.8+ and pip installed.

## Develop

```bash
uv pip install -e ".[dev]"
uv run -m pytest
```

## Build

```
uv build
```

## Publish to PyPI

```
python -m twine upload dist/*
uv run twine upload dist/*
```

## Testing and Local Updates
For development or testing, synchronize your local environment with:

```
uv sync
```
