Metadata-Version: 2.4
Name: syncprio
Version: 0.1.0
Summary: Monothread Priority Kernel for Monitored Concurrency (SyncPrio).
Author-email: chiro <chiro6466@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/chiro6466/syncprio
Project-URL: Code Source, https://github.com/chiro6466/syncprio
Project-URL: Bug Report, https://github.com/chiro6466/syncprio/issues
Keywords: monothread,kernel,scheduling,priority,task-execution,windows-compat
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
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: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/plain
Provides-Extra: darkness
Requires-Dist: routless; extra == "darkness"

# 🚀 SyncPrio: Priority-Based Synchronous Execution Kernel

SyncPrio is an infrastructure library designed for **single-threaded execution**, but with a strict **priority** and *scheduling* system.

It arose from the need to manage concurrency in environments where native Python threads are unstable or incompatible (such as in certain Windows configurations or Python 3.8), offering deterministic and ordered execution control.

### 🌟 Main Features

* **Synchronous Execution:** Ensures that tasks are executed sequentially, eliminating the *race conditions* of multithreading.

* **Weighted Priority:** Tasks are ranked by a **Global Tier** (SYSTEM, ENGINE, RUNNER, LPT) and a **Local Tier**, ensuring that critical tasks are always executed first.

* **Optional Integration (`routless`):** Support for "Darkness Mode," which allows tasks to be loaded using logical names (tokens) without exposing their physical path.

### 📦 Installation

```bash
pip install syncprio
