Metadata-Version: 2.4
Name: vexa-auth
Version: 1.0.0
Summary: Official Python SDK for VexaAuth - Modern Authentication & License Management
Author-email: VexaAuth Team <support@vexaauth.com>
License: MIT
Project-URL: Homepage, https://vexaauth.com
Project-URL: Documentation, https://docs.vexaauth.com
Project-URL: Repository, https://github.com/vexaauth/python-sdk
Project-URL: Bug Tracker, https://github.com/vexaauth/python-sdk/issues
Keywords: authentication,license,api,sdk,vexaauth
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
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 :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Security
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: mypy>=0.950; extra == "dev"
Requires-Dist: flake8>=4.0.0; extra == "dev"

# VexaAuth Python SDK

Official Python SDK for VexaAuth - Modern Authentication & License Management

## Installation

```bash
pip install vexa-auth
```

## Quick Start

```python
from VexaAuth import VexaAuthClient

# Initialize
client = VexaAuthClient(api_key="your_api_key_here")

# Verify license
result = client.verify_license("XXXX-XXXX-XXXX-XXXX")
print(result)
```

## Full Documentation

See the [main README](../README.md) for complete documentation.

## Publishing to PyPI

```bash
# Build
python -m build

# Upload
python -m twine upload dist/*
```
