Metadata-Version: 2.3
Name: schema-cat
Version: 0.1.0
Summary: A Python library for typed prompts
License: MIT
Author: Michael Lahr
Author-email: michael.lahr@gmail.com
Requires-Python: >=3.8
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
Description-Content-Type: text/markdown

# schema-cat

A Python library for typed prompts.

## Installation

```bash
pip install schema-cat
```

## Usage

```python
import schema_cat
# Your usage here
```

## Development

Install dependencies with Poetry:

```bash
poetry install
```

## Publishing

To publish to PyPI:

```bash
poetry build
poetry publish
``` 
