Metadata-Version: 2.4
Name: clayseal
Version: 0.0.1
Summary: Clay Seal — name reservation stub. Licensed packages install from Azure Artifacts.
Project-URL: Homepage, https://github.com/pberlizov/clay-seal-core
Project-URL: Documentation, https://github.com/pberlizov/clay-seal-core/blob/main/docs/AZURE_ARTIFACTS.md
Project-URL: Repository, https://github.com/pberlizov/clay-seal-core
Project-URL: Issues, https://github.com/pberlizov/clay-seal-core/issues
Author: Clay Seal
License: LicenseRef-Proprietary
Keywords: agentauth,ai-agents,attestation,clay-seal,security
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
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 :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# clayseal (PyPI name reservation)

This is **not** the Clay Seal SDK. It is a **public PyPI stub** that reserves the
`clayseal` package name and points installers to the correct distribution channel.

**Clay Seal** is a security platform for attested identity, dynamic capabilities, and
verifiable receipts for autonomous AI agents.

## Licensed install (proprietary packages)

Proprietary wheels (`agentauth-core`, `agentauth`, and other licensed distributions) are
**not** hosted on public PyPI. Install from **Azure Artifacts**:

1. Follow [Azure Artifacts setup](https://github.com/pberlizov/clay-seal-core/blob/main/docs/AZURE_ARTIFACTS.md).
2. Configure your feed as `pip`'s primary index.
3. Install:

```bash
pip install agentauth-core==0.5.0
pip install agentauth==0.5.0
```

Import paths use the `agentauth` namespace for compatibility:

```python
from agentauth import Identity, Capabilities, Receipts
```

## Open-source components

MIT-licensed packages (for example `agentauth-identity`) are published separately on
public PyPI when available.

## Why this package exists

Public PyPI has no private hosting. Publishing this stub:

- Reserves the `clayseal` name against typosquatting
- Makes `pip install clayseal` show this README instead of a third-party package
- Keeps proprietary bytecode off the public index

Do not expect `import clayseal` to provide SDK functionality.
