Metadata-Version: 2.4
Name: pqsafe
Version: 0.1.1
Summary: PQSafe AgentPay — umbrella package. Installs pqsafe-agent-pay (the SDK).
Author-email: Raymond Chau <raymond@pqsafe.xyz>
License: Apache-2.0
Project-URL: Homepage, https://pqsafe.xyz
Project-URL: Documentation, https://pqsafe.xyz/handbook
Project-URL: Repository, https://github.com/PQSafe/pqsafe
Project-URL: Open Letter, https://pqsafe.xyz/fido-pq-letter
Project-URL: Test Vectors, https://github.com/PQSafe/ap2-pq-test-vectors
Keywords: post-quantum,ml-dsa,agent-payments,ap2,fido-alliance
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
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: Topic :: Security :: Cryptography
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pqsafe-agent-pay>=0.1.1
Dynamic: license-file

# pqsafe

**Umbrella package for PQSafe AgentPay.** Installing `pqsafe` pulls in the real SDK, `pqsafe-agent-pay`.

```bash
pip install pqsafe
```

is equivalent to:

```bash
pip install pqsafe-agent-pay
```

## Why this package exists

The bare `pqsafe` name on PyPI is reserved here so the brand namespace is not squatted. The actual SDK ships under `pqsafe-agent-pay`; framework integrations under `langchain-pqsafe` and `crewai-pqsafe`.

## Use

```python
from pqsafe_agent_pay import create_envelope, sign_envelope, execute_agent_payment
```

## Links

- Website: https://pqsafe.xyz
- Handbook: https://pqsafe.xyz/handbook
- FIDO Alliance open letter: https://pqsafe.xyz/fido-pq-letter
- AP2-PQ Profile RFC: https://pqsafe.xyz/ap2-pq-rfc
- Test vectors: https://github.com/PQSafe/ap2-pq-test-vectors
- License: Apache-2.0
