Metadata-Version: 2.4
Name: sheaflab
Version: 0.0.1a1
Summary: Bootstrap namespace and metadata helpers for the SheafLab project.
Project-URL: Homepage, https://sheaflab.com
Project-URL: Repository, https://github.com/SheafLab/sheaflab-python
Project-URL: Issues, https://github.com/SheafLab/sheaflab-python/issues
Author: SheafLab
License: MIT
License-File: LICENSE
Keywords: bootstrap,metadata,naming,research,utilities
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
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

# sheaflab

`sheaflab` is the official Python package namespace for the SheafLab project.

This initial public release is intentionally small. It provides stable naming
helpers, a tiny metadata surface, and a CLI entry point while the broader
SheafLab codebase remains private and under active development.

## Status

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

## Install

```bash
pip install sheaflab
```

## Usage

```bash
sheaflab
sheaflab --version
```

```python
from sheaflab import artifact_name, canonical_name, dotted_path, project_info

canonical_name("Sheaf Lab")
artifact_name("SheafLab", "Core Engine", "0.1.0")
dotted_path("SheafLab", "Core Engine")
project_info()
```

## Notes

This package intentionally exposes only a minimal public surface at this stage.
Future releases may expand functionality and may be published from a different
official SheafLab repository.

