queue_sqlite/pyproject.toml

55 lines
1.4 KiB
TOML
Raw Normal View History

2025-08-08 16:03:02 +08:00
[project]
authors = [
{name = "chakcy", email = "947105045@qq.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
2025-09-27 21:18:06 +08:00
"Programming Language :: Python :: 3",
2025-08-08 16:03:02 +08:00
"Topic :: System :: Distributed Computing",
"Typing :: Typed",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
2025-09-27 21:18:06 +08:00
dependencies = [
2025-11-05 13:05:57 +08:00
"queue-sqlite-core>=0.2.0",
2025-09-27 21:18:06 +08:00
]
description = "A high-performance, SQLite-based distributed task queue system with Rust-backed core operations. Supports task mounting, message listening, priority handling, retry mechanisms, and automatic cleanup of expired messages. Ideal for building reliable, scalable background task processing systems."
2025-08-08 16:03:02 +08:00
name = "queue-sqlite"
readme = "README.md"
2025-10-19 21:23:55 +08:00
requires-python = ">=3.11"
2026-01-06 13:55:00 +08:00
version = "0.2.2"
2025-08-08 16:03:02 +08:00
[project.optional-dependencies]
2025-11-02 14:21:30 +08:00
pyqt5 = ["qtpy", "PyQt5"]
2025-11-05 13:05:57 +08:00
pyqt6 = ["qtpy", "PyQt6"]
pyside6 = ["qtpy", "PySide6"]
2025-12-15 08:37:09 +08:00
[[tool.uv.index]]
default = true
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
2025-08-08 16:03:02 +08:00
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[dependency-groups]
dev = [
2025-11-05 13:05:57 +08:00
"maturin>=1.9.4",
"psutil>=7.0.0",
"pytest>=7.4.4",
"twine>=4.0.2",
2025-08-08 16:03:02 +08:00
]
[tool.hatch.build.targets.wheel]
packages = ["src/queue_sqlite"]
2025-11-05 13:05:57 +08:00
[tool.uv.workspace]
members = [
"src/queue_sqlite_core",
]
[tool.uv.sources]
queue-sqlite-core = { workspace = true }