Metadata-Version: 2.4
Name: sheaftask
Version: 0.0.1a1
Summary: Bootstrap task graph helpers for the SheafLab project.
Project-URL: Homepage, https://sheaflab.com
Project-URL: Repository, https://github.com/SheafLab/sheaftask-python
Project-URL: Issues, https://github.com/SheafLab/sheaftask-python/issues
Author: SheafLab
License: MIT
License-File: LICENSE
Keywords: dependency,planning,sheaflab,tasks,workflow
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

# sheaftask

`sheaftask` is the official Python package namespace for lightweight task-graph
planning helpers used by the SheafLab project.

This initial public release exposes a small but real surface: defining task
specs, validating dependency references, computing ready tasks, and generating
a deterministic execution order for compact task sets.

## Install

```bash
pip install sheaftask
```

## Usage

```python
from sheaftask import TaskSpec, execution_order, ready_tasks

tasks = [
    TaskSpec("collect", priority=2),
    TaskSpec("normalize", depends_on=("collect",), priority=1),
    TaskSpec("report", depends_on=("normalize",), priority=1),
]

order = execution_order(tasks)
ready = ready_tasks(tasks, completed={"collect"})
```

## Status

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

