Metadata-Version: 2.4
Name: gmi-sandbox-sdk-test
Version: 0.1.0
Summary: A small test SDK for sandbox integrations.
Project-URL: Homepage, https://github.com/gmi
Author: GMI
License: MIT
License-File: LICENSE
Keywords: sandbox,sdk,testing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: twine>=5.0; extra == 'dev'
Description-Content-Type: text/markdown

# GMI Sandbox SDK Test

A minimal Python SDK used to test packaging and installation workflows.

## Install

```bash
python -m pip install gmi-sandbox-sdk-test
```

## Usage

```python
from sandbox_sdk import SandboxClient

client = SandboxClient(api_key="your-test-key")
print(client.health())
```

The package has no runtime dependencies and the health check is deterministic;
it does not make network requests.

## Development

```bash
python -m pip install -e ".[dev]"
pytest
python -m build
```

## License

MIT
