Metadata-Version: 2.3
Name: vein
Version: 0.1.0
Summary: A Python package
Author: Josh Breidinger
Author-email: company@breisoft.com
Requires-Python: >=3.8
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

# Vein

A Python package.

## Installation

```bash
pip install vein
```

## Usage

```python
import vein

# Example usage
print(vein.hello())
```

## Development

This package is built using Poetry. To set up the development environment:

```bash
# Clone the repository
git clone https://github.com/yourusername/vein.git
cd vein

# Install Poetry (if not already installed)
pip install poetry

# Install dependencies
poetry install

# Run tests
poetry run pytest
```

## License

This project is licensed under the MIT License. 
