Metadata-Version: 2.4
Name: clayseal
Version: 0.1.0
Summary: Clay Seal installer — routes pip to the licensed Azure Artifacts feed.
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: MIT
Keywords: agentauth,ai-agents,attestation,clay-seal,security
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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
Classifier: Topic :: System :: Software Distribution
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# clayseal

Public **installer** for [Clay Seal](https://github.com/pberlizov/clay-seal-core) — routes
`pip` to the licensed Azure Artifacts feed. Proprietary SDK wheels are **not** on PyPI.

## Quick start

```bash
python3 -m venv .venv && source .venv/bin/activate
pip install --upgrade pip
pip install clayseal
clayseal install
```

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

## Commands

| Command | Purpose |
| --- | --- |
| `clayseal install [VERSION]` | Write `pip.conf`, install `agentauth` (default `0.5.0`) |
| `clayseal configure` | Write `pip.conf` only |
| `clayseal doctor` | Show venv / pip config diagnostics |

### With a read PAT (CI or non-interactive)

```bash
export CLAYSEAL_AZURE_PAT="..."   # Packaging Read
clayseal install 0.5.0
```

Or: `clayseal install --pat "$CLAYSEAL_AZURE_PAT"`

## What this package is

- **On PyPI:** small public router CLI (this repo).
- **On Azure Artifacts:** `agentauth-core`, `agentauth-identity`, `agentauth-capabilities`,
  `agentauth-receipts`, `agentauth`.

See [Azure Artifacts partner docs](https://github.com/pberlizov/clay-seal-core/blob/main/docs/AZURE_ARTIFACTS.md).
