gflow 0.4.10

A lightweight, single-node job scheduler written in Rust.
Documentation
[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"

[project]
name = "runqd"
version = "0.4.10"
description = "A lightweight, single-node job scheduler written in Rust."
authors = [
    { name = "PuQing", email = "me@puqing.work" }
]
readme = "README.md"
license = { text = "MIT" }
keywords = ["slurm", "scheduler", "job", "rust"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
    "Intended Audience :: System Administrators",
    "License :: OSI Approved :: MIT License",
    "Operating System :: POSIX :: Linux",
    "Programming Language :: Rust",
    "Topic :: System :: Distributed Computing",
    "Topic :: System :: Monitoring",
    "Topic :: Utilities",
]
requires-python = ">=3.8"

[project.urls]
Homepage = "https://runqd.com"
Documentation = "https://runqd.com"
Repository = "https://github.com/AndPuQing/gflow.git"
Issues = "https://github.com/AndPuQing/gflow/issues"

[tool.maturin]
# Binary-only distribution (no Python bindings)
bindings = "bin"
# Strip binaries to reduce size
strip = true
# Include all 7 binaries from Cargo.toml
manifest-path = "Cargo.toml"
# Module name for the package
module-name = "runqd"