Metadata-Version: 2.4
Name: openstream
Version: 0.1.0
Summary: A Python package for streaming data processing
Project-URL: Homepage, https://github.com/yourusername/openstream
Project-URL: Repository, https://github.com/yourusername/openstream
Project-URL: Issues, https://github.com/yourusername/openstream/issues
Author-email: DONGHYEONG LEE <donghyeong.lee@hd.com>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
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
Requires-Python: >=3.8
Provides-Extra: dev
Requires-Dist: black; extra == 'dev'
Requires-Dist: flake8; extra == 'dev'
Requires-Dist: mypy; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# openstream

A Python package for streaming data processing.

## Installation

```bash
pip install openstream
```

## Usage

```python
from openstream import stream_data

# Example usage
data = [1, 2, 3, 4, 5]
result = stream_data(data)
```

## Development

Install the package in development mode:

```bash
pip install -e ".[dev]"
```

Run tests:

```bash
pytest
```

## License

MIT License