Metadata-Version: 2.4
Name: thisisadirothlib
Version: 0.1.0
Summary: A package that includes an MSI installer
License: MIT
Author: Adi Roth
Author-email: adi@example.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown

# thisIsAdiRothLib

A Python package that includes a Windows MSI installer.

## Installation

```bash
pip install thisisadirothlib
```

## Usage

```python
from thisisadirothlib import get_msi_path, list_included_files

# Get the path to the MSI file
msi_path = get_msi_path()
print(f"MSI location: {msi_path}")

# List all included files
files = list_included_files()
print(f"Included files: {files}")
```

## License

MIT

