Metadata-Version: 2.4
Name: kernl-sdk
Version: 1.0.0rc7
Summary: Kernl SDK Python bindings
Author-email: Your Name <you@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourorg/kernl-sdk
Project-URL: Repository, https://github.com/yourorg/kernl-sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
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
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Kernl SDK - Python Bindings

High-performance, cross-platform Python bindings for the Kernl SDK.

## Installation

```bash
pip install kernl-sdk
```

## Quick Start

```python
from kernl import Kernl

# Create a Kernl instance
kernl = Kernl()

# Initialize with a message
kernl.initialize("Hello, World!")

# Print the message
kernl.print()

# Get the message
print(kernl.message)  # "Hello, World!"

# Check if initialized
print(kernl.is_initialized)  # True
```

## Platform Support

- **macOS**: Universal binary (x86_64 + arm64)
- **Windows**: x64 and ARM64
- **Linux**: x64 and ARM64 with manylinux compatibility

## Requirements

- Python 3.8 or later
- Supported operating systems: macOS 10.14+, Windows 10+, Linux (Ubuntu 18.04+)

## Documentation

For complete documentation, examples, and API reference, visit:
https://github.com/your-org/kernl-sdk

## License

MIT License - see LICENSE file for details.
