Metadata-Version: 2.1
Name: restack_ai
Version: 0.0.8
Summary: Python Restack AI libraries
Author: Restack Team
Author-email: service@restack.io
Requires-Python: >=3.8,<4.0
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: Programming Language :: Python :: 3.13
Requires-Dist: pydantic (==2.9.2)
Requires-Dist: python-dotenv (>=0.19.0,<0.20.0)
Requires-Dist: temporalio (==1.7.1)
Description-Content-Type: text/markdown

# Restack AI libraries

This is the Python Restack AI libraries.

## Installation

You can install the Restack AI libraries using pip:

### Using pip

```bash
pip install restack_ai
```

### Using Poetry

```bash
poetry add restack_ai
```

## Prerequisites

- Python 3.8 or higher
- Poetry (for dependency management)

## Usage

To use the libraries in your project, you can import it like this:

```python
from restack_ai import Restack
```

## Initialize the Restack client

```python
client = Restack()
```

## Documentation

For detailed usage instructions, please visit our examples repository at [https://github.com/restackio/examples-python](https://github.com/restackio/examples-python).

## Development

If you want to contribute to the libraries development:

1. Clone the repository and navigate to the `engine/libraries/python` directory.
2. Install Poetry if you haven't already: [https://python-poetry.org/docs/#installation](https://python-poetry.org/docs/#installation)
3. Install the project dependencies:

   ```bash
   poetry install
   ```

4. Activate the virtual environment:

   ```bash
   poetry shell
   ```

