Metadata-Version: 2.4
Name: ai-marketplace-framework
Version: 0.3.0
Summary: AI Marketplace authoring framework
Project-URL: Homepage, https://github.com/zakariaalmoktar/AI-Marketplace-Platform
Project-URL: Repository, https://github.com/zakariaalmoktar/AI-Marketplace-Platform
Project-URL: Issues, https://github.com/zakariaalmoktar/AI-Marketplace-Platform/issues
Author: AI Marketplace Platform
License: Proprietary
Keywords: agents,ai,authoring,framework,marketplace
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: pydantic<3,>=2.10
Description-Content-Type: text/markdown

# ai-marketplace-framework

Authoring primitives for AI Marketplace agents.

## Install

```bash
python -m pip install ai-marketplace-framework
```

## What It Provides

`ai-marketplace-framework` contains the lightweight authoring surface shared by
AI Marketplace model projects. It is intentionally small and pairs with
`ai-marketplace-sdk`, which provides the higher-level runtime and tooling.

## Minimal Example

```python
from aimp_framework.base import Agent


class ExampleAgent(Agent):
    models = []
```

## Project Links

- Repository: https://github.com/zakariaalmoktar/AI-Marketplace-Platform
- Issues: https://github.com/zakariaalmoktar/AI-Marketplace-Platform/issues
