Metadata-Version: 2.4
Name: adroitconfig-py
Version: 0.1.1
Summary: Lightweight Python wrapper for Adroit OLE server configuration
Author: Diego Acuña
Author-email: Diego Acuña <diegoa@adroit.co.za>
License: MIT
Project-URL: Homepage, https://github.com/yourrepo
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pywin32>=305; sys_platform == "win32"
Dynamic: license-file

# adroitconfig-py

Python wrapper package for the Adroit OLE server configuration. Provides a friendly `AdroitConfigOLE` class
and a module-level `adroitconfig` object for interactive use.

## Requirements

- Python 3.x on Windows (requires `pywin32>=305`)

Installation (editable/development):

```bash
python -m pip install -e .
```

Usage:

```python
from adroitconfig import AdroitConfigOLE

# connect when needed
adroitconfig: AdroitConfigOLE = AdroitConfigOLE()
adroitconfig.CreateAgent("MyAnalog1", "My first analog agent", "Analog")
```
