Metadata-Version: 2.4
Name: ai-audit-ledger
Version: 0.0.1
Summary: Audit ledger for AI agents.
Project-URL: Homepage, https://github.com/shahidh68/ai-audit-ledger
Project-URL: Repository, https://github.com/shahidh68/ai-audit-ledger
Project-URL: Issues, https://github.com/shahidh68/ai-audit-ledger/issues
Project-URL: Changelog, https://github.com/shahidh68/ai-audit-ledger/blob/main/CHANGELOG.md
Author-email: Shahid Hamid <hello@zyvra.studio>
License-Expression: Apache-2.0
License-File: LICENSE
Keywords: agents,ai,audit,compliance,ledger,observability
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
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: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: ruff>=0.6; extra == 'dev'
Requires-Dist: twine>=5; extra == 'dev'
Description-Content-Type: text/markdown

# ai-audit-ledger

> Audit ledger for AI agents.

[![PyPI](https://img.shields.io/pypi/v/ai-audit-ledger.svg)](https://pypi.org/project/ai-audit-ledger/)
[![Python versions](https://img.shields.io/pypi/pyversions/ai-audit-ledger.svg)](https://pypi.org/project/ai-audit-ledger/)
[![License](https://img.shields.io/pypi/l/ai-audit-ledger.svg)](LICENSE)

> **Status: pre-alpha.** This is a name reservation. The API surface is not yet stable and there is no functionality to depend on.

## Install

```bash
pip install ai-audit-ledger
```

## Quickstart

```python
from ai_audit_ledger import __version__

print(__version__)
```

## Development

```bash
git clone https://github.com/shahidh68/ai-audit-ledger.git
cd ai-audit-ledger
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytest
ruff check .
mypy
```

## Releasing

Releases are published to PyPI by GitHub Actions via [Trusted Publishing](https://docs.pypi.org/trusted-publishers/) on tag push:

```bash
git tag v0.0.2
git push origin v0.0.2
```

## License

Apache License 2.0. See [LICENSE](LICENSE).
