Metadata-Version: 2.4
Name: sheafrepo
Version: 0.0.1a1
Summary: Bootstrap repository inventory helpers for the SheafLab project.
Project-URL: Homepage, https://sheaflab.com
Project-URL: Repository, https://github.com/SheafLab/sheafrepo-python
Project-URL: Issues, https://github.com/SheafLab/sheafrepo-python/issues
Author: SheafLab
License: MIT
License-File: LICENSE
Keywords: git,inventory,repo,sheaflab,urls
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# sheafrepo

`sheafrepo` is the official Python package namespace for lightweight repository
inventory helpers used by the SheafLab project.

This initial public release provides a focused surface: normalizing Git remotes,
describing repo records, grouping them by owner, and computing compact
inventory summaries for small repo sets.

## Install

```bash
pip install sheafrepo
```

## Usage

```python
from sheafrepo import RepoRecord, inventory_summary, normalize_remote

records = [
    RepoRecord("SheafLab", "SheafLab", "git@github.com:SheafLab/SheafLab.git", "main", "/repos/SheafLab"),
]

remote = normalize_remote(records[0].remote)
summary = inventory_summary(records)
```

## Status

- Project stage: pre-alpha
- Package scope: bootstrap repository-inventory utilities only
- Main project site: https://sheaflab.com

