Metadata-Version: 2.4
Name: quantumlock-sdk
Version: 1.0.0
Summary: QuantumLock SDK - Enterprise License Validation with Quantum Security
Project-URL: Homepage, https://quantumlock.softquantus.com
Project-URL: Documentation, https://docs.softquantus.com/quantumlock
Author-email: SoftQuantus <dev@softquantus.com>
License-Expression: LicenseRef-Proprietary
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
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
Requires-Dist: cryptography>=41.0.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# QuantumLock SDK

Enterprise License Validation with Quantum Security.

## Installation

```bash
pip install quantumlock-sdk
```

## Quick Start

```python
from quantumlock_sdk import LicenseValidator

validator = LicenseValidator(api_url="https://api.quantumlock.softquantus.com")
result = validator.validate("YOUR-LICENSE-KEY")

if result.valid:
    print("License validated successfully!")
```

## Documentation

https://docs.softquantus.com/quantumlock
