Metadata-Version: 2.4
Name: celesto
Version: 0.0.1.dev1
Summary: Python SDK and CLI for the Celesto AI platform.
Author-email: Aniket Maurya <aniket@celesto.ai>
License-File: LICENSE
Keywords: API,Agents,Celesto,SDK
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.10
Requires-Dist: a2a-sdk>=0.3.10
Requires-Dist: fastmcp>=2.7.1
Requires-Dist: httpx>=0.27.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: rich>=14.0.0
Requires-Dist: typer>=0.20.0
Requires-Dist: typing-extensions>=4.10.0
Description-Content-Type: text/markdown

# Celesto SDK

Python SDK and CLI for the Celesto AI platform.

## Install

```bash
pip install celesto
```

## Configure

Set your API key in the environment:

```bash
export CELESTO_API_KEY="your-key"
```

## CLI

```bash
celesto deploy
celesto ls
celesto a2a get-card --agent http://localhost:8000
```

## SDK

```python
from celesto.sdk import CelestoSDK

client = CelestoSDK()
print(client.deployment.list())
```
