Metadata-Version: 2.4
Name: qauntt-cli
Version: 0.1.2
Summary: Production-ready CLI for the QAUNTT enterprise API
Author-email: "J. King Kasr" <developer@kajlabs.com>
License: MIT OR Apache-2.0
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.12.3
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.7.0
Requires-Dist: rich>=13.7.1
Requires-Dist: platformdirs>=4.2.2
Requires-Dist: python-dateutil>=2.9.0

# QAUNTT CLI

Production-ready CLI implementation for the QAUNTT enterprise API.

## Features
- secure config storage under the user config directory
- access token and API key auth
- resilient HTTP client with timeout handling
- JSON and table output modes
- org, customer, API key, invoice, payment and usage commands
- webhook signature verification helper
- shell-friendly exit codes

## Install
```bash
pip install qauntt-cli
```

## Quickstart
```bash
qauntt config set-base-url https://api.quantt.at
qauntt auth login --email admin@example.com --password secret
qauntt org list
qauntt usage current --tenant tenant_123
```

## Environment variables
- `QAUNTT_BASE_URL`
- `QAUNTT_ACCESS_TOKEN`
- `QAUNTT_API_KEY`
- `QAUNTT_OUTPUT` (`table` or `json`)

## Notes
This CLI is ready to integrate with the enterprise API shape defined earlier. Live deployment still requires the exact deployed endpoint contract and final auth/payment settings.
