Metadata-Version: 2.4
Name: scm_collection
Version: 99
Summary: A small demo package that provides simple collection utilities.
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourname/scm_collection
Project-URL: Issues, https://github.com/yourname/scm_collection/issues
Keywords: demo,collection,utilities
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
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# scm_collection

A small demo package that provides simple collection utilities. It is intended
as an example of how to build and publish a package to PyPI.

## Installation

```bash
pip install scm_collection
```

## Usage

```python
from scm_collection import chunk, deduplicate, flatten, frequency

chunk([1, 2, 3, 4, 5], 2)        # [[1, 2], [3, 4], [5]]
deduplicate([1, 1, 2, 3, 3])     # [1, 2, 3]
flatten([[1, 2], [3], [4, 5]])   # [1, 2, 3, 4, 5]
frequency("banana")              # {'b': 1, 'a': 3, 'n': 2}
```

## License

MIT
