Metadata-Version: 2.4
Name: PySingletonMeta
Version: 0.1.0.3
Summary: Singleton Metaclass for comfy imports
Home-page: https://github.com/a-jean-andreasian/Lambda-REST-Client
Author: Armen-Jean Andreasian
Author-email: armen.andreasian.dev@proton.me
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# PySingletonMeta

A lightweight singleton metaclass for clean and comfy imports.

---
## Installation

```bash
pip install PySingletonMeta
```

---
## Example

```python
from pysingletonmeta import SingletonMeta

class StreamingService(metaclass=SingletonMeta):
    pass

a = StreamingService()
b = StreamingService()

assert a is b  # True
```

---

That’s all you need.
