Metadata-Version: 2.4
Name: agreeo
Version: 0.1.1
Summary: CLI for verifying Agreeo-signed PDF documents
Author: Agreeo
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: platformdirs>=4.2.0
Requires-Dist: requests>=2.31.0

# Agreeo CLI

Install locally:

```bash
pip install .
```

First-time setup:

```bash
agreeo config set-api-url https://your-api.example.com
```

Verify a document:

```bash
agreeo --verify AGR-1234567890 /path/to/document.pdf
```

You can also pass the API URL directly:

```bash
agreeo --api-base-url https://your-api.example.com --verify AGR-1234567890 /path/to/document.pdf
```

Or set it via environment variable:

```bash
export AGREEO_API_BASE_URL=https://your-api.example.com
```

If no API URL is configured, the CLI will prompt on first run and save it for future use.
