Metadata-Version: 2.4
Name: everstack
Version: 0.1.0
Summary: The official Python SDK for the Everstack AI platform
Project-URL: Homepage, https://everstack.ai
Project-URL: Documentation, https://docs.everstack.ai/sdks/python
Project-URL: Repository, https://github.com/everstacklabs/everstack-python
Author: Everstack Labs
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: httpx<1.0,>=0.25.0
Requires-Dist: pydantic<3.0,>=2.0.0
Requires-Dist: typing-extensions>=4.7.0
Provides-Extra: dev
Requires-Dist: mypy>=1.5; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
Requires-Dist: pytest-httpx>=0.30; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1; extra == 'dev'
Description-Content-Type: text/markdown

# Everstack Python SDK

The official Python SDK for the [Everstack](https://everstack.ai) AI platform.

## Installation

```bash
pip install everstack
```

## Quick Start

```python
from everstack import Everstack

client = Everstack(api_key="your-api-key")
```

## Documentation

See the full documentation at [docs.everstack.ai/sdks/python](https://docs.everstack.ai/sdks/python).
