Metadata-Version: 2.4
Name: acp-runtime
Version: 0.1.0
Summary: Reference Python SDK for the Agent Communication Protocol (ACP)
Author: ACP Contributors
Project-URL: Homepage, https://github.com/beltxa/acp
Project-URL: Repository, https://github.com/beltxa/acp
Project-URL: Issues, https://github.com/beltxa/acp/issues
Keywords: acp,agent communication protocol,ai agents,sdk
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Communications
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: cryptography>=42.0.0
Requires-Dist: paho-mqtt>=2.1.0
Requires-Dist: pika>=1.3.2
Requires-Dist: requests>=2.31.0
Provides-Extra: dev
Requires-Dist: build>=1.2.2; extra == "dev"
Requires-Dist: flask>=3.0.0; extra == "dev"
Requires-Dist: httpx>=0.27.0; extra == "dev"
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: twine>=6.0.0; extra == "dev"

# ACP Python SDK (`acp-sdk`)

Reference Python SDK for the Agent Communication Protocol (ACP).

## Install

From source:

```bash
pip install -e .
```

From PyPI (target package name):

```bash
pip install acp-sdk
```

## CLI

The CLI is packaged separately as `acp-cli`.

## Quick Check

```bash
python -c "import acp; print('acp-sdk import ok')"
```
