Metadata-Version: 2.4
Name: vercel-blob-storage
Version: 0.1.0
Summary: A demo hello-world package
License-Expression: MIT
License-File: LICENSE
Author: Surya Sekhar Datta
Author-email: suryasekhardatta22@gmail.com
Requires-Python: >=3.9
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Project-URL: Homepage, https://github.com/suryasekhardatta/vercel-blob-storage
Description-Content-Type: text/markdown

# vercel-blob-storage

A demo hello-world Python package.

## Install

```bash
pip install vercel-blob-storage
```

## Usage

```python
from vercel_blob_storage import hello_world

print(hello_world())
```

Or run it as a CLI:

```bash
vercel-blob-storage
```

## Development

This project is managed with [Poetry](https://python-poetry.org/).

```bash
poetry install
poetry run vercel-blob-storage
poetry run pytest
poetry build
```

