Metadata-Version: 2.4
Name: db-model-trainer
Version: 0.1.0
Summary: A package for processing YAML in Databricks
Home-page: https://github.com/BenMacKenzie/db-model-trainer.git
Author: Ben Mackenzie
Author-email: Ben Mackenzie <ben.mackenzie@example.com>
Project-URL: Homepage, https://github.com/yourusername/db-model-trainer
Project-URL: Bug Tracker, https://github.com/yourusername/db-model-trainer/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyyaml>=6.0.1
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# DB Model Trainer

A Python package for processing YAML in Databricks environments.

## Installation

```bash
pip install db-model-trainer
```

## Usage

```python
from db_model_trainer import process_yaml

# Example YAML string
yaml_string = """
name: test
version: 1.0
"""

# Process the YAML
result = process_yaml(yaml_string)
print(result)
```

## Development

To install in development mode:

```bash
pip install -e .
```

## License

This project is licensed under the MIT License - see the LICENSE file for details. 



python -m build
python -m twine upload dist/*


