Metadata-Version: 2.4
Name: csvalchemy_sdk
Version: 0.1.0
Summary: A lightweight Python client SDK for the CSValchemy API
Home-page: https://github.com/Unsiloed-AI/spreadsheet-llm
Author: Unsiloed.Ai
Author-email: Your Name <your@email.com>
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# Your Package Name

A brief description of what your package does.

## Installation

```bash
pip install your-package-name
```

## Usage

```python
from your_package import some_function

# Example usage
result = some_function(param1, param2)
```

## Features

* Feature 1
* Feature 2
* Feature 3

## Development

### Setup Development Environment

```bash
git clone https://github.com/yourusername/your-package-name.git
cd your-package-name
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -e ".[dev]"
```

### Run Tests

```bash
pytest
```

## License

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