Metadata-Version: 2.4
Name: bindable
Version: 0.0.1
Summary: Early-stage accountability lifecycle primitives for agentic systems.
Project-URL: Homepage, https://bindable.co
Project-URL: Repository, https://github.com/bindable-ai/bindable
Author: Bindable AI LLC
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
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: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Bindable

Bindable is an early-stage Python package for agentic lifecycle accountability primitives.

## Status

This package is under active development, and public APIs are not yet stable.

## Install

```bash
pip install bindable
```

## Example

```python
from bindable import Agent, Principal, bind

agent = Agent(id="agent-1")
principal = Principal(name="Alice")
binding = bind(agent=agent, principal=principal)
```
