Metadata-Version: 2.4
Name: triage4
Version: 1.0.0
Summary: TRIAGE/4 core scheduling package for priority-aware IoT message serving
Author: TRIAGE/4 Contributors
License-Expression: MIT
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
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.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4.0; extra == "dev"
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"
Requires-Dist: mypy>=1.5.0; extra == "dev"
Provides-Extra: research
Requires-Dist: matplotlib>=3.7.0; extra == "research"
Requires-Dist: scipy>=1.10.0; extra == "research"
Requires-Dist: pandas>=2.0.0; extra == "research"
Requires-Dist: tqdm>=4.67.1; extra == "research"
Dynamic: license-file

# triage4

Core TRIAGE/4 scheduling package for priority-aware IoT message serving.

## Package Scope

- Distributable package code lives in `src/triage4`.
- Research and benchmarking code lives in `assessment/` and is intentionally non-distribution.
- Compatibility modules under `src/schedulers` and `src/vanilla` support repository workflows and are excluded from wheel packaging.

## Installation

Install core package for runtime use:

```bash
pip install -e .
```

Install research dependencies for local assessment/benchmark execution:

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

Install development + research dependencies:

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

## Packaging Guarantees

- Project distribution name: `triage4`
- Published wheel content: `triage4/*` modules and package metadata only
- `assessment/`, `tests/`, and benchmark artifacts are not shipped in distribution files
