Metadata-Version: 2.4
Name: ollamapy
Version: 0.1.0
Summary: A simple Python package for Ollama utilities
Project-URL: Homepage, https://github.com/TheRealLazyArtist/ollamapy
Project-URL: Repository, https://github.com/TheRealLazyArtist/ollamapy
Project-URL: Issues, https://github.com/TheRealLazyArtist/ollamapy/issues
Author-email: The Lazy Artist <TheRealLazyArtist@iCloud.com>
License: GPL-3.0-or-later
Keywords: ai,llama,ollama,python,utilities
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
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: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: isort; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# My Package

A simple Python package.

## Installation

```bash
pipx install .
```

## Usage

```python
from my_package import hello, greet

print(hello())
print(greet("World"))
```

## CLI

```bash
my-cli
```

## Development

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